Prechádzať zdrojové kódy

Merge pull request #317 from ente-io/fix_theme_issue

Vishnu Mohandas 3 rokov pred
rodič
commit
ff3c6e25ce
1 zmenil súbory, kde vykonal 8 pridanie a 2 odobranie
  1. 8 2
      lib/ui/fading_bottom_bar.dart

+ 8 - 2
lib/ui/fading_bottom_bar.dart

@@ -189,7 +189,10 @@ class FadingBottomBarState extends State<FadingBottomBar> {
         child: Padding(
           padding: const EdgeInsets.only(top: 12, bottom: 12),
           child: IconButton(
-            icon: Icon(Icons.restore_outlined),
+            icon: Icon(
+              Icons.restore_outlined,
+              color: Colors.white,
+            ),
             onPressed: () {
               final selectedFiles = SelectedFiles();
               selectedFiles.toggleSelection(widget.file);
@@ -216,7 +219,10 @@ class FadingBottomBarState extends State<FadingBottomBar> {
         child: Padding(
           padding: const EdgeInsets.only(top: 12, bottom: 12),
           child: IconButton(
-            icon: Icon(Icons.delete_forever_outlined),
+            icon: Icon(
+              Icons.delete_forever_outlined,
+              color: Colors.white,
+            ),
             onPressed: () async {
               final trashedFile = <TrashFile>[];
               trashedFile.add(widget.file);