From 1596a44ec56119cf25e2405816a83c13604c6b5d Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Fri, 3 Mar 2023 23:31:21 -0500 Subject: [PATCH] Bugfixes from prev. commit --- .../app/src/main/res/values-night/colors.xml | 4 ---- lib/pages/apps.dart | 22 ++++++++++--------- pubspec.yaml | 2 +- 3 files changed, 13 insertions(+), 15 deletions(-) delete mode 100644 android/app/src/main/res/values-night/colors.xml diff --git a/android/app/src/main/res/values-night/colors.xml b/android/app/src/main/res/values-night/colors.xml deleted file mode 100644 index 604d9b4..0000000 --- a/android/app/src/main/res/values-night/colors.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - #1b1827 - \ No newline at end of file diff --git a/lib/pages/apps.dart b/lib/pages/apps.dart index 9fe11b8..49e21db 100644 --- a/lib/pages/apps.dart +++ b/lib/pages/apps.dart @@ -294,16 +294,18 @@ class AppsPageState extends State { mainAxisAlignment: MainAxisAlignment.center, children: [ Transform( - alignment: Alignment.center, - transform: Matrix4.rotationZ(0.31), - child: Image( - image: const AssetImage( - 'assets/graphics/icon.png'), - color: Colors.white.withOpacity(0.1), - colorBlendMode: BlendMode.modulate, - gaplessPlayback: true, - ), - ), + alignment: Alignment.center, + transform: Matrix4.rotationZ(0.31), + child: Padding( + padding: const EdgeInsets.all(15), + child: Image( + image: const AssetImage( + 'assets/graphics/icon_small.png'), + color: Colors.white.withOpacity(0.1), + colorBlendMode: BlendMode.modulate, + gaplessPlayback: true, + ), + )), ]), title: Text( maxLines: 1, diff --git a/pubspec.yaml b/pubspec.yaml index a724b56..c854b49 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 0.11.7+127 # When changing this, update the tag in main() accordingly +version: 0.11.7+128 # When changing this, update the tag in main() accordingly environment: sdk: '>=2.18.2 <3.0.0'