opt: member page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-03-30 21:32:36 +08:00
parent 134bfd43ff
commit 678db34c81

View File

@@ -72,10 +72,13 @@ class _MemberContributeState extends State<MemberContribute>
), ),
), ),
Expanded( Expanded(
child: TabBarView( child: Material(
physics: const NeverScrollableScrollPhysics(), color: Colors.transparent,
controller: _controller.tabController, child: TabBarView(
children: _controller.items!.map(_getPageFromType).toList(), physics: const NeverScrollableScrollPhysics(),
controller: _controller.tabController,
children: _controller.items!.map(_getPageFromType).toList(),
),
), ),
), ),
], ],