Skip to content

Commit

Permalink
#359: updated icons
Browse files Browse the repository at this point in the history
  • Loading branch information
jorre127 committed Nov 4, 2024
1 parent 9ebbe4b commit 3b31bf1
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
3 changes: 3 additions & 0 deletions assets/images/icons/box.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/images/icons/list.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/images/icons/lock_open.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions lib/screen/debug/debug_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class DebugScreenState extends State<DebugScreen> {
const SizedBox(height: 24),
DebugSection(
title: localization.debugDatabase,
icon: ThemeAssets.fileIcon,
icon: ThemeAssets.boxIcon,
children: [
DebugRowItem(
key: Keys.debugDatabase,
Expand All @@ -108,7 +108,7 @@ class DebugScreenState extends State<DebugScreen> {
const SizedBox(height: 24),
DebugSection(
title: localization.debugPermissionsTitle,
icon: ThemeAssets.fileIcon,
icon: ThemeAssets.lockOpenIcon,
children: [
DebugRowItem(
key: Keys.debugPermissionAnalytics,
Expand All @@ -125,7 +125,7 @@ class DebugScreenState extends State<DebugScreen> {
const SizedBox(height: 24),
DebugSection(
title: 'logs',
icon: ThemeAssets.fileIcon,
icon: ThemeAssets.listIcon,
children: [
DebugRowItem(
key: Keys.debugPermissionAnalyticsReset,
Expand Down
8 changes: 7 additions & 1 deletion lib/styles/theme_assets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}

0 comments on commit 3b31bf1

Please sign in to comment.