diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-06-04 16:09:28 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-06-04 16:09:28 +0530 |
| commit | 1381bc6537e7cb8f7eb9c18a2a4df10b9d1eec47 (patch) | |
| tree | d4c571ad53a04ff3eca7b287cbd21f62991e6406 /lib | |
| parent | d2789f3ca1a143a5b779304cec103c0c1f851e70 (diff) | |
| download | daft-launcher-1381bc6537e7cb8f7eb9c18a2a4df10b9d1eec47.tar.gz daft-launcher-1381bc6537e7cb8f7eb9c18a2a4df10b9d1eec47.zip | |
Removes theme button
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pages/Home.dart | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/lib/pages/Home.dart b/lib/pages/Home.dart index 3e22f93..b812288 100644 --- a/lib/pages/Home.dart +++ b/lib/pages/Home.dart @@ -53,19 +53,20 @@ class StatusInfoCard extends StatelessWidget { Container( width: 40, height: 30, - child: IconButton( - padding: const EdgeInsets.all(0.0), - visualDensity: const VisualDensity(vertical: 0.0, horizontal: 0.0), - icon: Icon( - Icons.brightness_4, - color: theme.primaryColor, - size: 16.0, - semanticLabel: 'Toggle dark mode', - ), - tooltip: 'Toggle dark mode', - enableFeedback: true, - onPressed: () { toggleTheme(); } - ), + child: Text(''), + //child: IconButton( + //padding: const EdgeInsets.all(0.0), + //visualDensity: const VisualDensity(vertical: 0.0, horizontal: 0.0), + //icon: Icon( + //Icons.brightness_4, + //color: theme.primaryColor, + //size: 16.0, + //semanticLabel: 'Toggle dark mode', + //), + //tooltip: 'Toggle dark mode', + //enableFeedback: true, + //onPressed: () { toggleTheme(); } + //), ), ], ), |
