File tree 3 files changed +6
-11
lines changed
widgets/bangumi/user_collection
3 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -100,17 +100,13 @@ class _PageWidgetState extends State<PageWidget> {
100
100
@override
101
101
void initState () {
102
102
super .initState ();
103
- controller.addListener (() {
104
- setState (() {});
105
- });
103
+ controller.addListener (() => setState);
106
104
}
107
105
108
106
/// 获取背景色
109
107
Color getBackgroundColor (int index) {
110
108
var base = FluentTheme .of (context).accentColor;
111
- if (index == controller.cur) {
112
- return base ;
113
- }
109
+ if (index == controller.cur) return base ;
114
110
return Colors .transparent;
115
111
}
116
112
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ class _BangumiCollectionPageState extends ConsumerState<BangumiCollectionPage>
37
37
var type = values[i];
38
38
if (type == BangumiCollectionType .unknown) continue ;
39
39
result.add (Tab (
40
+ selectedBackgroundColor: FluentTheme .of (context).accentColor,
40
41
icon: Icon (type.icon),
41
42
text: Text (type.label),
42
43
body: BucTabView (type),
Original file line number Diff line number Diff line change @@ -79,9 +79,7 @@ class _BucTabState extends ConsumerState<BucTabView>
79
79
@override
80
80
void initState () {
81
81
super .initState ();
82
- Future .delayed (Duration .zero, () async {
83
- await loadData ();
84
- });
82
+ Future .delayed (Duration .zero, () async => await loadData ());
85
83
}
86
84
87
85
/// dispose
@@ -239,7 +237,7 @@ class _BucTabState extends ConsumerState<BucTabView>
239
237
SizedBox (width: 8. w),
240
238
buildRefresh (context),
241
239
SizedBox (width: 8. w),
242
- SizedBox (width: 600 . w, child: buildJump (context)),
240
+ SizedBox (width: 450 . w, child: buildJump (context)),
243
241
const Spacer (),
244
242
PageWidget (pageController),
245
243
SizedBox (width: 8. w),
@@ -255,7 +253,7 @@ class _BucTabState extends ConsumerState<BucTabView>
255
253
controller: ScrollController (),
256
254
padding: const EdgeInsets .all (8 ),
257
255
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount (
258
- crossAxisCount: 4 ,
256
+ crossAxisCount: 3 ,
259
257
childAspectRatio: 10 / 7 ,
260
258
mainAxisSpacing: 8 ,
261
259
crossAxisSpacing: 8 ,
You can’t perform that action at this time.
0 commit comments