Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-13 11:49:38 +08:00
parent f824477ddb
commit c05fbde3fa
106 changed files with 2780 additions and 3200 deletions

View File

@@ -204,22 +204,18 @@ class _HistoryPageState extends State<HistoryPage>
],
),
Expanded(
child: Material(
color: Colors.transparent,
child: TabBarView(
physics: enableMultiSelect
? const NeverScrollableScrollPhysics()
: const CustomTabBarViewScrollPhysics(),
controller:
_historyController.tabController,
children: [
KeepAliveWrapper(
builder: (context) => _buildPage),
..._historyController.tabs.map(
(item) => HistoryPage(type: item.type),
),
],
),
child: TabBarView(
physics: enableMultiSelect
? const NeverScrollableScrollPhysics()
: const CustomTabBarViewScrollPhysics(),
controller: _historyController.tabController,
children: [
KeepAliveWrapper(
builder: (context) => _buildPage),
..._historyController.tabs.map(
(item) => HistoryPage(type: item.type),
),
],
),
),
],