aboutsummaryrefslogtreecommitdiff
path: root/lib/views/info_view.dart
diff options
context:
space:
mode:
authordavidpkj <davidpenkow1@gmail.com>2023-03-05 12:18:13 +0100
committerdavidpkj <davidpenkow1@gmail.com>2023-03-05 12:18:13 +0100
commitb654999240fbfc4e6c19badb93c7ec54ff4afab6 (patch)
tree8a3904bb5bce857b7faad36168231108009691ea /lib/views/info_view.dart
parentb71c69b065daef4f028146d00951534515c50568 (diff)
Minor bug and spelling fixes
Diffstat (limited to 'lib/views/info_view.dart')
-rw-r--r--lib/views/info_view.dart14
1 files changed, 3 insertions, 11 deletions
diff --git a/lib/views/info_view.dart b/lib/views/info_view.dart
index 04c3887..bda2d14 100644
--- a/lib/views/info_view.dart
+++ b/lib/views/info_view.dart
@@ -14,8 +14,9 @@ class InfoView extends StatefulWidget {
}
class _InfoViewState extends State<InfoView> {
+ String name = "David Penkowoj";
String websiteURL = "https://davidpenkowoj.de";
- String sourceCodeURL = "http://git.davidpenkowoj.de/kulinar_app.git";
+ String sourceCodeURL = "https://git.davidpenkowoj.de/kulinar_app.git";
String privacyNoticeURL = "https://davidpenkowoj.de/static/files/privacy-notice.html";
@override
@@ -35,7 +36,7 @@ class _InfoViewState extends State<InfoView> {
),
ListTile(
title: Text(AppLocalizations.of(context)!.info2, style: cDefaultTextStyle),
- subtitle: Text("David Penkowoj", style: cDetailsTextStyle),
+ subtitle: Text(name, style: cDetailsTextStyle),
),
ListTile(
title: Text(AppLocalizations.of(context)!.info3, style: cDefaultTextStyle),
@@ -76,15 +77,6 @@ class _InfoViewState extends State<InfoView> {
},
),
),
-/* ListTile(
- title: Text(AppLocalizations.of(context)!.info7, style: cDefaultTextStyle),
- trailing: IconButton(
- icon: Icon(Icons.launch_rounded),
- onPressed: () {
- Navigator.push(context, SlideFromRightRoute(child: ChangelogView()));
- },
- ),
- ), */
],
),
);