Skip to content

Commit

Permalink
Added about dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
YarosMallorca committed Jul 17, 2024
1 parent a9b804d commit c712ef5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/components/app_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ class MappingAppBar extends StatelessWidget implements PreferredSizeWidget {
Widget build(BuildContext context) {
return Consumer<ThemeManager>(
builder: (context, theme, child) => AppBar(
title: const Text("DJI Mapper"),
title: GestureDetector(
onTap: () => showAboutDialog(context: context),
child: const Text("DJI Mapper")),
elevation: 10,
actions: [
PopupMenuButton(
Expand Down

0 comments on commit c712ef5

Please sign in to comment.