@@ -23,9 +23,9 @@ class _SettingsPageState extends State<SettingsPage> {
23
23
static const String _repoUrl = 'https://github.com/davquar/halfdot' ;
24
24
static const String _license = 'MIT' ;
25
25
static const String _licenseUrl =
26
- 'https://github.com/davquar/halfdot/LICENSE' ;
26
+ 'https://github.com/davquar/halfdot/blob/main/ LICENSE' ;
27
27
static const String _privacyUrl =
28
- 'https://github.com/davquar/halfdot/PRIVACY.md' ;
28
+ 'https://github.com/davquar/halfdot/blob/main/ PRIVACY.md' ;
29
29
30
30
@override
31
31
Widget build (BuildContext context) {
@@ -86,19 +86,19 @@ class _SettingsPageState extends State<SettingsPage> {
86
86
trailing: const Icon (Icons .link),
87
87
),
88
88
ListTile (
89
- title: Text (AppLocalizations .of (context)! .privacyPolicy ),
90
- subtitle: const Text (_privacyUrl ),
89
+ title: Text (AppLocalizations .of (context)! .sourceCode ),
90
+ subtitle: const Text (_repoUrl ),
91
91
onTap: () => launchUrlString (
92
- _privacyUrl ,
92
+ _repoUrl ,
93
93
mode: LaunchMode .externalApplication,
94
94
),
95
95
trailing: const Icon (Icons .link),
96
96
),
97
97
ListTile (
98
- title: Text (AppLocalizations .of (context)! .sourceCode ),
99
- subtitle: const Text (_repoUrl ),
98
+ title: Text (AppLocalizations .of (context)! .privacyPolicy ),
99
+ subtitle: const Text (_privacyUrl ),
100
100
onTap: () => launchUrlString (
101
- _repoUrl ,
101
+ _privacyUrl ,
102
102
mode: LaunchMode .externalApplication,
103
103
),
104
104
trailing: const Icon (Icons .link),
0 commit comments