diff options
| author | Mica White <botahamec@outlook.com> | 2025-12-29 00:18:05 -0500 |
|---|---|---|
| committer | Mica White <botahamec@outlook.com> | 2025-12-29 00:18:05 -0500 |
| commit | d44654698cc3c65a5a458f4c2cdc3b2d868890f5 (patch) | |
| tree | 46e0a62270af683969b461507027e8108b0dd5a7 /lib/home.dart | |
| parent | eda099834e8c1cf028cc21d20266fde589fb2ef7 (diff) | |
Change navigation button to settings butto:nq
Diffstat (limited to 'lib/home.dart')
| -rw-r--r-- | lib/home.dart | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/home.dart b/lib/home.dart index 0235016..371a52e 100644 --- a/lib/home.dart +++ b/lib/home.dart @@ -78,11 +78,11 @@ class _HomePageState extends State<HomePage> { appBar: AppBar( actions: [ MenuAnchor( - builder: (context, controller, child) => IconButton( - icon: Icon(Icons.more_vert), + builder: (context, controller, child) => TextButton.icon( + icon: Icon(Icons.settings), + label: Text('Settings'), onPressed: () => controller.isOpen ? controller.close() : controller.open(), - tooltip: "Navigation menu", ), menuChildren: [ MenuItemButton(child: Text('Settings')), |
