This commit is contained in:
xkeyC 2023-11-22 20:13:55 +08:00
parent bc34493bab
commit c71eb30725
6 changed files with 7 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 KiB

After

Width:  |  Height:  |  Size: 67 KiB

BIN
assets/app_logo_mini.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -16,7 +16,7 @@ class AboutUI extends BaseUI<AboutUIModel> {
children: [ children: [
const Spacer(), const Spacer(),
const SizedBox(height: 64), const SizedBox(height: 64),
Image.asset("assets/app_logo.png", width: 64, height: 64), Image.asset("assets/app_logo.png", width: 128, height: 128),
const SizedBox(height: 6), const SizedBox(height: 6),
if (AppConf.isMSE) if (AppConf.isMSE)
const Text( const Text(

View File

@ -25,7 +25,12 @@ class IndexUI extends BaseUI<IndexUIModel> {
alignment: AlignmentDirectional.centerStart, alignment: AlignmentDirectional.centerStart,
child: Row( child: Row(
children: [ children: [
Image.asset("assets/app_logo.png", width: 24, height: 24), Image.asset(
"assets/app_logo_mini.png",
width: 20,
height: 20,
fit: BoxFit.cover,
),
const SizedBox(width: 12), const SizedBox(width: 12),
if (AppConf.isMSE) if (AppConf.isMSE)
const Text("SC汉化盒子 V${AppConf.appVersion}") const Text("SC汉化盒子 V${AppConf.appVersion}")

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 17 KiB