Skip to content

Commit 3b31bf1

Browse files
committed
#359: updated icons
1 parent 9ebbe4b commit 3b31bf1

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

assets/images/icons/box.svg

+3
Loading

assets/images/icons/list.svg

+3
Loading

assets/images/icons/lock_open.svg

+3
Loading

lib/screen/debug/debug_screen.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class DebugScreenState extends State<DebugScreen> {
9696
const SizedBox(height: 24),
9797
DebugSection(
9898
title: localization.debugDatabase,
99-
icon: ThemeAssets.fileIcon,
99+
icon: ThemeAssets.boxIcon,
100100
children: [
101101
DebugRowItem(
102102
key: Keys.debugDatabase,
@@ -108,7 +108,7 @@ class DebugScreenState extends State<DebugScreen> {
108108
const SizedBox(height: 24),
109109
DebugSection(
110110
title: localization.debugPermissionsTitle,
111-
icon: ThemeAssets.fileIcon,
111+
icon: ThemeAssets.lockOpenIcon,
112112
children: [
113113
DebugRowItem(
114114
key: Keys.debugPermissionAnalytics,
@@ -125,7 +125,7 @@ class DebugScreenState extends State<DebugScreen> {
125125
const SizedBox(height: 24),
126126
DebugSection(
127127
title: 'logs',
128-
icon: ThemeAssets.fileIcon,
128+
icon: ThemeAssets.listIcon,
129129
children: [
130130
DebugRowItem(
131131
key: Keys.debugPermissionAnalyticsReset,

lib/styles/theme_assets.dart

+7-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,11 @@ class ThemeAssets {
3333

3434
static const translationsIcon = '$_iconsAssetPrefix/translations.svg';
3535

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';
3743
}

0 commit comments

Comments
 (0)