Skip to content

Commit e9f481a

Browse files
committed
💄 调整溢出
1 parent 5c7da41 commit e9f481a

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

lib/controller/app/page_controller.dart

+2-6
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,13 @@ class _PageWidgetState extends State<PageWidget> {
100100
@override
101101
void initState() {
102102
super.initState();
103-
controller.addListener(() {
104-
setState(() {});
105-
});
103+
controller.addListener(() => setState);
106104
}
107105

108106
/// 获取背景色
109107
Color getBackgroundColor(int index) {
110108
var base = FluentTheme.of(context).accentColor;
111-
if (index == controller.cur) {
112-
return base;
113-
}
109+
if (index == controller.cur) return base;
114110
return Colors.transparent;
115111
}
116112

lib/pages/bangumi/bangumi_collection.dart

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class _BangumiCollectionPageState extends ConsumerState<BangumiCollectionPage>
3737
var type = values[i];
3838
if (type == BangumiCollectionType.unknown) continue;
3939
result.add(Tab(
40+
selectedBackgroundColor: FluentTheme.of(context).accentColor,
4041
icon: Icon(type.icon),
4142
text: Text(type.label),
4243
body: BucTabView(type),

lib/widgets/bangumi/user_collection/buc_tabview.dart

+3-5
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,7 @@ class _BucTabState extends ConsumerState<BucTabView>
7979
@override
8080
void initState() {
8181
super.initState();
82-
Future.delayed(Duration.zero, () async {
83-
await loadData();
84-
});
82+
Future.delayed(Duration.zero, () async => await loadData());
8583
}
8684

8785
/// dispose
@@ -239,7 +237,7 @@ class _BucTabState extends ConsumerState<BucTabView>
239237
SizedBox(width: 8.w),
240238
buildRefresh(context),
241239
SizedBox(width: 8.w),
242-
SizedBox(width: 600.w, child: buildJump(context)),
240+
SizedBox(width: 450.w, child: buildJump(context)),
243241
const Spacer(),
244242
PageWidget(pageController),
245243
SizedBox(width: 8.w),
@@ -255,7 +253,7 @@ class _BucTabState extends ConsumerState<BucTabView>
255253
controller: ScrollController(),
256254
padding: const EdgeInsets.all(8),
257255
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
258-
crossAxisCount: 4,
256+
crossAxisCount: 3,
259257
childAspectRatio: 10 / 7,
260258
mainAxisSpacing: 8,
261259
crossAxisSpacing: 8,

0 commit comments

Comments
 (0)