aboutsummaryrefslogtreecommitdiff
path: root/lib/pages
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2020-06-04 16:09:28 +0530
committerAkshay Nair <phenax5@gmail.com>2020-06-04 16:09:28 +0530
commit1381bc6537e7cb8f7eb9c18a2a4df10b9d1eec47 (patch)
treed4c571ad53a04ff3eca7b287cbd21f62991e6406 /lib/pages
parentd2789f3ca1a143a5b779304cec103c0c1f851e70 (diff)
downloaddaft-launcher-1381bc6537e7cb8f7eb9c18a2a4df10b9d1eec47.tar.gz
daft-launcher-1381bc6537e7cb8f7eb9c18a2a4df10b9d1eec47.zip
Removes theme button
Diffstat (limited to 'lib/pages')
-rw-r--r--lib/pages/Home.dart27
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(); }
+ //),
),
],
),