mod: 侧边栏、动态重构,排行改为首页分区,平板、折叠屏、竖屏视频新适配,播放页可隐藏黑边、截图、点踩,弹幕粗细调整,默认关闭后台播放,弹窗接受返回

This commit is contained in:
orz12
2024-05-20 14:46:31 +08:00
parent fd51cddeca
commit 074bf03946
97 changed files with 4105 additions and 2672 deletions

View File

@@ -35,72 +35,94 @@ class _RankPageState extends State<RankPage>
}
});
}
@override
void dispose() {
_rankController.tabController.removeListener(() {});
_rankController.tabController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
super.build(context);
return Scaffold(
appBar: AppBar(
toolbarHeight: 0,
elevation: 0,
systemOverlayStyle: SystemUiOverlayStyle(
// Customize the status bar here
statusBarIconBrightness:
MediaQuery.of(context).platformBrightness == Brightness.dark
? Brightness.light
: Brightness.dark,
return Row(
children: [
const SizedBox(
width: StyleString.cardSpace,
),
),
body: Row(
children: [
const SizedBox(
width: StyleString.cardSpace,
// SizedBox(
// width: 55,
// child: NavigationRail(
//
// backgroundColor: Colors.transparent,
// minWidth: 50.0,
// // elevation: 0,
// selectedIndex: _selectedTabIndex,
// onDestinationSelected: (int index) {
// feedBack();
// if (_selectedTabIndex == index) {
// _rankController.tabsCtrList[index]().animateToTop();
// } else {
// setState(() {
// _rankController.tabController.index = index;
// _selectedTabIndex = index;
// });
// }
// },
// labelType: NavigationRailLabelType.none,
// destinations: [
// for (var tab in _rankController.tabs)
// NavigationRailDestination(
// padding: EdgeInsets.zero,
// icon: Text(tab['label']),
// // selectedIcon: Text(tab['label']),
// label: const SizedBox.shrink(),
// ),
// ],
// trailing: const SizedBox(height: 100),
// )),
LayoutBuilder(builder: (context, constraint) {
return SingleChildScrollView(
child: ConstrainedBox(
constraints: BoxConstraints(minHeight: constraint.maxHeight),
child: IntrinsicHeight(
child: NavigationRail(
backgroundColor: Colors.transparent,
minWidth: 50.0,
// elevation: 0,
selectedIndex: _selectedTabIndex,
onDestinationSelected: (int index) {
feedBack();
if (_selectedTabIndex == index) {
_rankController.tabsCtrList[index]().animateToTop();
} else {
setState(() {
_rankController.tabController.index = index;
_selectedTabIndex = index;
});
}
},
labelType: NavigationRailLabelType.none,
destinations: [
for (var tab in _rankController.tabs)
NavigationRailDestination(
icon: Text(tab['label']),
// selectedIcon: Text(tab['label']),
label: const SizedBox.shrink(),
),
],
trailing: const SizedBox(height: 100),
))));
}),
Expanded(
child: TabBarView(
controller: _rankController.tabController,
children: _rankController.tabsPageList,
),
LayoutBuilder(builder: (context, constraint) {
return SingleChildScrollView(
child: ConstrainedBox(
constraints:
BoxConstraints(minHeight: constraint.maxHeight + 100),
child: IntrinsicHeight(
child: NavigationRail(
minWidth: 55.0,
selectedIndex: _selectedTabIndex,
onDestinationSelected: (int index) {
feedBack();
if (_selectedTabIndex == index) {
_rankController.tabsCtrList[index]().animateToTop();
} else {
setState(() {
_rankController.tabController.index = index;
_selectedTabIndex = index;
});
}
},
labelType: NavigationRailLabelType.none,
destinations: [
for (var tab in _rankController.tabs)
NavigationRailDestination(
icon: Text(tab['label']),
// selectedIcon: Text(tab['label']),
label: const SizedBox.shrink(),
),
],
))));
}),
Expanded(
child: TabBarView(
controller: _rankController.tabController,
children: _rankController.tabsPageList,
),
),
],
),
),
],
);
}
}