File tree 5 files changed +19
-4
lines changed
5 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ class DebugScreenState extends State<DebugScreen> {
96
96
const SizedBox (height: 24 ),
97
97
DebugSection (
98
98
title: localization.debugDatabase,
99
- icon: ThemeAssets .fileIcon ,
99
+ icon: ThemeAssets .boxIcon ,
100
100
children: [
101
101
DebugRowItem (
102
102
key: Keys .debugDatabase,
@@ -108,7 +108,7 @@ class DebugScreenState extends State<DebugScreen> {
108
108
const SizedBox (height: 24 ),
109
109
DebugSection (
110
110
title: localization.debugPermissionsTitle,
111
- icon: ThemeAssets .fileIcon ,
111
+ icon: ThemeAssets .lockOpenIcon ,
112
112
children: [
113
113
DebugRowItem (
114
114
key: Keys .debugPermissionAnalytics,
@@ -125,7 +125,7 @@ class DebugScreenState extends State<DebugScreen> {
125
125
const SizedBox (height: 24 ),
126
126
DebugSection (
127
127
title: 'logs' ,
128
- icon: ThemeAssets .fileIcon ,
128
+ icon: ThemeAssets .listIcon ,
129
129
children: [
130
130
DebugRowItem (
131
131
key: Keys .debugPermissionAnalyticsReset,
Original file line number Diff line number Diff line change @@ -33,5 +33,11 @@ class ThemeAssets {
33
33
34
34
static const translationsIcon = '$_iconsAssetPrefix /translations.svg' ;
35
35
36
- static const analyticsImage = '$_imageAssetPrefix /analytics.png' ;
36
+ static const boxIcon = '$_iconsAssetPrefix /box.svg' ;
37
+
38
+ static const listIcon = '$_iconsAssetPrefix /list.svg' ;
39
+
40
+ static const lockOpenIcon = '$_iconsAssetPrefix /lock_open.svg' ;
41
+
42
+ static const analyticsImage = '$_imageAssetPrefix /analytics.svg' ;
37
43
}
You can’t perform that action at this time.
0 commit comments