mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
111 lines
3.8 KiB
Dart
111 lines
3.8 KiB
Dart
import 'package:PiliPlus/models/common/rank_type.dart';
|
|
import 'package:PiliPlus/pages/rank/controller.dart';
|
|
import 'package:PiliPlus/pages/rank/zone/view.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class RankPage extends StatefulWidget {
|
|
const RankPage({super.key});
|
|
|
|
@override
|
|
State<RankPage> createState() => _RankPageState();
|
|
}
|
|
|
|
class _RankPageState extends State<RankPage>
|
|
with AutomaticKeepAliveClientMixin {
|
|
final RankController _rankController = Get.put(RankController());
|
|
|
|
@override
|
|
bool get wantKeepAlive => true;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
super.build(context);
|
|
return Row(
|
|
children: [
|
|
SizedBox(
|
|
width: 64,
|
|
child: ListView(
|
|
padding: EdgeInsets.only(
|
|
bottom: MediaQuery.paddingOf(context).bottom + 80,
|
|
),
|
|
children: List.generate(
|
|
RankType.values.length,
|
|
(index) => IntrinsicHeight(
|
|
child: Obx(
|
|
() {
|
|
final isCurr = index == _rankController.tabIndex.value;
|
|
return Material(
|
|
color: isCurr
|
|
? theme.colorScheme.onInverseSurface
|
|
: theme.colorScheme.surface,
|
|
child: InkWell(
|
|
onTap: () {
|
|
if (isCurr) {
|
|
_rankController.animateToTop();
|
|
} else {
|
|
_rankController
|
|
..tabIndex.value = index
|
|
..tabController.animateTo(index);
|
|
}
|
|
},
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Container(
|
|
height: double.infinity,
|
|
width: 3,
|
|
color: isCurr
|
|
? theme.colorScheme.primary
|
|
: Colors.transparent,
|
|
),
|
|
Expanded(
|
|
flex: 1,
|
|
child: Container(
|
|
alignment: Alignment.center,
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 7,
|
|
),
|
|
child: Text(
|
|
RankType.values[index].label,
|
|
style: TextStyle(
|
|
color: isCurr
|
|
? theme.colorScheme.primary
|
|
: theme.colorScheme.onSurface,
|
|
fontSize: 15,
|
|
),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Expanded(
|
|
child: TabBarView(
|
|
physics: const NeverScrollableScrollPhysics(),
|
|
controller: _rankController.tabController,
|
|
children: RankType.values
|
|
.map(
|
|
(item) => ZonePage(
|
|
rid: item.rid,
|
|
seasonType: item.seasonType,
|
|
),
|
|
)
|
|
.toList(),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|