mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
fix: 使用导航键点不到合集列表末项与错误日志
This commit is contained in:
@@ -27,23 +27,26 @@ class _AboutPageState extends State<AboutPage> {
|
|||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: Text('关于', style: Theme.of(context).textTheme.titleMedium),
|
title: Text('关于', style: Theme.of(context).textTheme.titleMedium),
|
||||||
),
|
),
|
||||||
body: SingleChildScrollView(
|
body: ListView(
|
||||||
child: Column(
|
|
||||||
children: [
|
children: [
|
||||||
|
ConstrainedBox(constraints:
|
||||||
|
const BoxConstraints(
|
||||||
|
maxHeight: 150),
|
||||||
|
child:
|
||||||
Image.asset(
|
Image.asset(
|
||||||
'assets/images/logo/logo_android_2.png',
|
'assets/images/logo/logo_android_2.png',
|
||||||
width: 150,
|
|
||||||
),
|
),
|
||||||
Text(
|
|
||||||
'PiliPala',
|
|
||||||
style: Theme.of(context).textTheme.titleMedium,
|
|
||||||
),
|
),
|
||||||
const SizedBox(height: 6),
|
ListTile(
|
||||||
Text(
|
title: Text('PiliPala',
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: Theme.of(context).textTheme.titleMedium!.copyWith(height: 2)),
|
||||||
|
subtitle: Text(
|
||||||
'使用Flutter开发的哔哩哔哩第三方客户端',
|
'使用Flutter开发的哔哩哔哩第三方客户端',
|
||||||
|
textAlign: TextAlign.center,
|
||||||
style: TextStyle(color: Theme.of(context).colorScheme.outline),
|
style: TextStyle(color: Theme.of(context).colorScheme.outline),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 20),
|
),
|
||||||
Obx(
|
Obx(
|
||||||
() => ListTile(
|
() => ListTile(
|
||||||
title: const Text('当前版本'),
|
title: const Text('当前版本'),
|
||||||
@@ -140,7 +143,6 @@ class _AboutPageState extends State<AboutPage> {
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -131,6 +131,9 @@ class _SeasonPanelState extends State<SeasonPanel> {
|
|||||||
Theme.of(context).dividerColor.withOpacity(0.1),
|
Theme.of(context).dividerColor.withOpacity(0.1),
|
||||||
),
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsets.only(
|
||||||
|
bottom: MediaQuery.of(context).padding.bottom),
|
||||||
child: Material(
|
child: Material(
|
||||||
child: ScrollablePositionedList.builder(
|
child: ScrollablePositionedList.builder(
|
||||||
itemCount: episodes.length,
|
itemCount: episodes.length,
|
||||||
@@ -163,7 +166,7 @@ class _SeasonPanelState extends State<SeasonPanel> {
|
|||||||
itemScrollController: itemScrollController,
|
itemScrollController: itemScrollController,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
)),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user