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

View File

@ -16,7 +16,7 @@ class AboutUI extends BaseUI<AboutUIModel> {
children: [
const Spacer(),
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),
if (AppConf.isMSE)
const Text(

View File

@ -25,7 +25,12 @@ class IndexUI extends BaseUI<IndexUIModel> {
alignment: AlignmentDirectional.centerStart,
child: Row(
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),
if (AppConf.isMSE)
const Text("SC汉化盒子 V${AppConf.appVersion}")