Skip to content

Commit

Permalink
feat: add about dialog with version and license information
Browse files Browse the repository at this point in the history
  • Loading branch information
Merrit committed Feb 17, 2024
1 parent 9b97777 commit 5fb1436
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lib/src/settings/settings_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,17 @@ class SettingsPage extends StatelessWidget {
: translations.settings.upToDate,
),
),
ListTile(
title: const Text('About'),
onTap: () => showAboutDialog(
context: context,
applicationIcon: CircleAvatar(
child: Image.asset('assets/icons/codes.merritt.FeelingFinder.png'),
),
applicationName: 'Feeling Finder',
applicationVersion: state.runningVersion,
),
),
],
);
},
Expand Down

0 comments on commit 5fb1436

Please sign in to comment.