Merge pull request #347 from ImranR98/dev

Bugfixes from prev. commit
This commit is contained in:
Imran Remtulla
2023-03-03 23:31:54 -05:00
committed by GitHub
3 changed files with 13 additions and 15 deletions

View File

@@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#1b1827</color>
</resources>

View File

@@ -294,16 +294,18 @@ class AppsPageState extends State<AppsPage> {
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
Transform( Transform(
alignment: Alignment.center, alignment: Alignment.center,
transform: Matrix4.rotationZ(0.31), transform: Matrix4.rotationZ(0.31),
child: Image( child: Padding(
image: const AssetImage( padding: const EdgeInsets.all(15),
'assets/graphics/icon.png'), child: Image(
color: Colors.white.withOpacity(0.1), image: const AssetImage(
colorBlendMode: BlendMode.modulate, 'assets/graphics/icon_small.png'),
gaplessPlayback: true, color: Colors.white.withOpacity(0.1),
), colorBlendMode: BlendMode.modulate,
), gaplessPlayback: true,
),
)),
]), ]),
title: Text( title: Text(
maxLines: 1, maxLines: 1,

View File

@@ -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 # 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 # 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. # 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: environment:
sdk: '>=2.18.2 <3.0.0' sdk: '>=2.18.2 <3.0.0'