diff --git a/assets/images/icons/box.svg b/assets/images/icons/box.svg new file mode 100644 index 00000000..74d0ddd6 --- /dev/null +++ b/assets/images/icons/box.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/images/icons/list.svg b/assets/images/icons/list.svg new file mode 100644 index 00000000..d3386b92 --- /dev/null +++ b/assets/images/icons/list.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/images/icons/lock_open.svg b/assets/images/icons/lock_open.svg new file mode 100644 index 00000000..fb81600c --- /dev/null +++ b/assets/images/icons/lock_open.svg @@ -0,0 +1,3 @@ + + + diff --git a/lib/screen/debug/debug_screen.dart b/lib/screen/debug/debug_screen.dart index f32f7eee..a65dc239 100644 --- a/lib/screen/debug/debug_screen.dart +++ b/lib/screen/debug/debug_screen.dart @@ -96,7 +96,7 @@ class DebugScreenState extends State { const SizedBox(height: 24), DebugSection( title: localization.debugDatabase, - icon: ThemeAssets.fileIcon, + icon: ThemeAssets.boxIcon, children: [ DebugRowItem( key: Keys.debugDatabase, @@ -108,7 +108,7 @@ class DebugScreenState extends State { const SizedBox(height: 24), DebugSection( title: localization.debugPermissionsTitle, - icon: ThemeAssets.fileIcon, + icon: ThemeAssets.lockOpenIcon, children: [ DebugRowItem( key: Keys.debugPermissionAnalytics, @@ -125,7 +125,7 @@ class DebugScreenState extends State { const SizedBox(height: 24), DebugSection( title: 'logs', - icon: ThemeAssets.fileIcon, + icon: ThemeAssets.listIcon, children: [ DebugRowItem( key: Keys.debugPermissionAnalyticsReset, diff --git a/lib/styles/theme_assets.dart b/lib/styles/theme_assets.dart index 061ef271..3e4a1c6c 100644 --- a/lib/styles/theme_assets.dart +++ b/lib/styles/theme_assets.dart @@ -33,5 +33,11 @@ class ThemeAssets { static const translationsIcon = '$_iconsAssetPrefix/translations.svg'; - static const analyticsImage = '$_imageAssetPrefix/analytics.png'; + static const boxIcon = '$_iconsAssetPrefix/box.svg'; + + static const listIcon = '$_iconsAssetPrefix/list.svg'; + + static const lockOpenIcon = '$_iconsAssetPrefix/lock_open.svg'; + + static const analyticsImage = '$_imageAssetPrefix/analytics.svg'; }