opt: member page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-15 10:05:22 +08:00
parent 5643ebfe48
commit 27b251b06e
4 changed files with 132 additions and 177 deletions

View File

@@ -35,7 +35,7 @@ class DynamicSliverAppBar extends StatefulWidget {
this.stretchTriggerOffset = 100.0, this.stretchTriggerOffset = 100.0,
this.onStretchTrigger, this.onStretchTrigger,
this.shape, this.shape,
this.toolbarHeight = kToolbarHeight + 20, this.toolbarHeight = kToolbarHeight,
this.leadingWidth, this.leadingWidth,
this.toolbarTextStyle, this.toolbarTextStyle,
this.titleTextStyle, this.titleTextStyle,
@@ -43,8 +43,10 @@ class DynamicSliverAppBar extends StatefulWidget {
this.forceMaterialTransparency = false, this.forceMaterialTransparency = false,
this.clipBehavior, this.clipBehavior,
this.appBarClipper, this.appBarClipper,
this.hasTabBar = false,
}); });
final bool hasTabBar;
final Widget? flexibleSpace; final Widget? flexibleSpace;
final Widget? leading; final Widget? leading;
final bool automaticallyImplyLeading; final bool automaticallyImplyLeading;
@@ -95,7 +97,6 @@ class _DynamicSliverAppBarState extends State<DynamicSliverAppBar> {
// As long as the height is 0 instead of the sliver app bar a sliver to box adapter will be used // As long as the height is 0 instead of the sliver app bar a sliver to box adapter will be used
// to calculate dynamically the size for the sliver app bar // to calculate dynamically the size for the sliver app bar
double _height = 0; double _height = 0;
Orientation? _orientation;
@override @override
void initState() { void initState() {
@@ -103,13 +104,6 @@ class _DynamicSliverAppBarState extends State<DynamicSliverAppBar> {
_updateHeight(); _updateHeight();
} }
@override
void didUpdateWidget(covariant DynamicSliverAppBar oldWidget) {
super.didUpdateWidget(oldWidget);
_updateHeight();
}
void _updateHeight() { void _updateHeight() {
// Gets the new height and updates the sliver app bar. Needs to be called after the last frame has been rebuild // Gets the new height and updates the sliver app bar. Needs to be called after the last frame has been rebuild
// otherwise this will throw an error // otherwise this will throw an error
@@ -123,23 +117,27 @@ class _DynamicSliverAppBarState extends State<DynamicSliverAppBar> {
}); });
} }
@override
void didChangeDependencies() {
_height = 0;
_updateHeight();
super.didChangeDependencies();
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
//Needed to lay out the flexibleSpace the first time, so we can calculate its intrinsic height //Needed to lay out the flexibleSpace the first time, so we can calculate its intrinsic height
Orientation orientation = MediaQuery.orientationOf(context);
if (_orientation != orientation) {
_orientation = orientation;
_height = 0;
}
if (_height == 0) { if (_height == 0) {
return SliverToBoxAdapter( return SliverToBoxAdapter(
child: Container( child: SizedBox(
key: _childKey, key: _childKey,
child: widget.flexibleSpace ?? SizedBox(height: kToolbarHeight), child: widget.flexibleSpace ?? SizedBox(height: kToolbarHeight),
), ),
); );
} }
MediaQuery.orientationOf(context);
return SliverAppBar( return SliverAppBar(
leading: widget.leading, leading: widget.leading,
automaticallyImplyLeading: widget.automaticallyImplyLeading, automaticallyImplyLeading: widget.automaticallyImplyLeading,
@@ -168,7 +166,7 @@ class _DynamicSliverAppBarState extends State<DynamicSliverAppBar> {
onStretchTrigger: widget.onStretchTrigger, onStretchTrigger: widget.onStretchTrigger,
shape: widget.shape, shape: widget.shape,
toolbarHeight: widget.toolbarHeight, toolbarHeight: widget.toolbarHeight,
expandedHeight: _height, expandedHeight: _height + (widget.hasTabBar ? 48 : 0),
leadingWidth: widget.leadingWidth, leadingWidth: widget.leadingWidth,
toolbarTextStyle: widget.toolbarTextStyle, toolbarTextStyle: widget.toolbarTextStyle,
titleTextStyle: widget.titleTextStyle, titleTextStyle: widget.titleTextStyle,

View File

@@ -33,7 +33,7 @@ class MemberControllerNew extends CommonDataController<Data, dynamic>
late List<Tab> tabs; late List<Tab> tabs;
List<Tab2>? tab2; List<Tab2>? tab2;
RxInt contributeInitialIndex = 0.obs; RxInt contributeInitialIndex = 0.obs;
double? top; double top = 0;
bool? hasSeasonOrSeries; bool? hasSeasonOrSeries;
final fromViewAid = Get.parameters['from_view_aid']; final fromViewAid = Get.parameters['from_view_aid'];

View File

@@ -55,7 +55,7 @@ class _MemberPageNewState extends State<MemberPageNew> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
if (_userController.top == null || _userController.top == 0) { if (_userController.top == 0) {
_userController.top = MediaQuery.of(context).padding.top; _userController.top = MediaQuery.of(context).padding.top;
} }
return Scaffold( return Scaffold(
@@ -64,7 +64,6 @@ class _MemberPageNewState extends State<MemberPageNew> {
() => _userController.loadingState.value is Success () => _userController.loadingState.value is Success
? LayoutBuilder( ? LayoutBuilder(
builder: (context, constraints) { builder: (context, constraints) {
// if (constraints.maxHeight > constraints.maxWidth) {
return ExtendedNestedScrollView( return ExtendedNestedScrollView(
key: _key, key: _key,
controller: _userController.scrollController, controller: _userController.scrollController,
@@ -97,41 +96,6 @@ class _MemberPageNewState extends State<MemberPageNew> {
) )
: Center(child: const Text('EMPTY')), : Center(child: const Text('EMPTY')),
); );
// } else {
// return Row(
// children: [
// Expanded(
// child: CustomScrollView(
// slivers: [
// _buildAppBar(false),
// ],
// ),
// ),
// Expanded(
// child: SafeArea(
// top: false,
// left: false,
// bottom: false,
// child: Column(
// children: [
// SizedBox(height: _userController.top),
// if ((_userController.tab2?.length ?? -1) > 1)
// _buildTab,
// Expanded(
// child:
// _userController.tab2?.isNotEmpty == true
// ? _buildBody
// : Center(
// child: const Text('EMPTY'),
// ),
// ),
// ],
// ),
// ),
// ),
// ],
// );
// }
}, },
) )
: Center( : Center(
@@ -186,27 +150,25 @@ class _MemberPageNewState extends State<MemberPageNew> {
); );
Widget _buildAppBar({bool needTab = true, bool isV = true}) => Widget _buildAppBar({bool needTab = true, bool isV = true}) =>
MediaQuery.removePadding( DynamicSliverAppBar(
context: context, primary: false,
removeTop: true,
// removeRight: true,
child: DynamicSliverAppBar(
leading: Padding( leading: Padding(
padding: EdgeInsets.only(top: _userController.top ?? 0), padding: EdgeInsets.only(top: _userController.top),
child: const BackButton(), child: const BackButton(),
), ),
hasTabBar: (_userController.tab2?.length ?? 0) > 1,
toolbarHeight: kToolbarHeight + _userController.top,
title: IgnorePointer( title: IgnorePointer(
child: Obx(() => _userController.showUname.value && child: Obx(() => _userController.showUname.value &&
_userController.username != null _userController.username != null
? Padding( ? Padding(
padding: EdgeInsets.only(top: _userController.top ?? 0), padding: EdgeInsets.only(top: _userController.top),
child: Text(_userController.username!), child: Text(_userController.username!),
) )
: const SizedBox.shrink()), : const SizedBox.shrink()),
), ),
pinned: true, pinned: true,
flexibleSpace: flexibleSpace: _buildUserInfo(_userController.loadingState.value, isV),
_buildUserInfo(_userController.loadingState.value, isV),
bottom: needTab && (_userController.tab2?.length ?? -1) > 1 bottom: needTab && (_userController.tab2?.length ?? -1) > 1
? PreferredSize( ? PreferredSize(
preferredSize: Size.fromHeight(48), preferredSize: Size.fromHeight(48),
@@ -215,7 +177,7 @@ class _MemberPageNewState extends State<MemberPageNew> {
: null, : null,
actions: [ actions: [
Padding( Padding(
padding: EdgeInsets.only(top: _userController.top ?? 0), padding: EdgeInsets.only(top: _userController.top),
child: IconButton( child: IconButton(
tooltip: '搜索', tooltip: '搜索',
onPressed: () => Get.toNamed( onPressed: () => Get.toNamed(
@@ -224,7 +186,7 @@ class _MemberPageNewState extends State<MemberPageNew> {
), ),
), ),
Padding( Padding(
padding: EdgeInsets.only(top: _userController.top ?? 0), padding: EdgeInsets.only(top: _userController.top),
child: PopupMenuButton( child: PopupMenuButton(
icon: const Icon(Icons.more_vert), icon: const Icon(Icons.more_vert),
itemBuilder: (BuildContext context) => <PopupMenuEntry>[ itemBuilder: (BuildContext context) => <PopupMenuEntry>[
@@ -299,7 +261,6 @@ class _MemberPageNewState extends State<MemberPageNew> {
), ),
const SizedBox(width: 4), const SizedBox(width: 4),
], ],
),
); );
Widget _errorWidget(msg) { Widget _errorWidget(msg) {
@@ -314,10 +275,7 @@ class _MemberPageNewState extends State<MemberPageNew> {
Loading() => const CircularProgressIndicator(), Loading() => const CircularProgressIndicator(),
Success() => userState.response is Data Success() => userState.response is Data
? Obx( ? Obx(
() => Padding( () => UserInfoCard(
padding: EdgeInsets.only(
bottom: (_userController.tab2?.length ?? 0) > 1 ? 48 : 0),
child: UserInfoCard(
isV: isV, isV: isV,
isOwner: _userController.mid == _userController.ownerMid, isOwner: _userController.mid == _userController.ownerMid,
relation: _userController.relation.value, relation: _userController.relation.value,
@@ -329,7 +287,6 @@ class _MemberPageNewState extends State<MemberPageNew> {
silence: _userController.silence, silence: _userController.silence,
endTime: _userController.endTime, endTime: _userController.endTime,
), ),
),
) )
: GestureDetector( : GestureDetector(
onTap: _userController.onReload, onTap: _userController.onReload,

View File

@@ -436,13 +436,13 @@ class UserInfoCard extends StatelessWidget {
child: card.officialVerify?.icon?.isNotEmpty == true child: card.officialVerify?.icon?.isNotEmpty == true
? CachedNetworkImage( ? CachedNetworkImage(
imageUrl: card.officialVerify!.icon!.http2https, imageUrl: card.officialVerify!.icon!.http2https,
width: 24, width: 22,
height: 24, height: 22,
) )
: Image.asset( : Image.asset(
'assets/images/big-vip.png', 'assets/images/big-vip.png',
width: 24, width: 22,
height: 24, height: 22,
), ),
), ),
); );
@@ -508,8 +508,8 @@ class UserInfoCard extends StatelessWidget {
if (card.officialVerify?.icon?.isNotEmpty == true || if (card.officialVerify?.icon?.isNotEmpty == true ||
(card.vip?.vipStatus ?? -1) > 0) (card.vip?.vipStatus ?? -1) > 0)
Positioned( Positioned(
top: 170, top: 172,
left: 80, left: 82,
child: _buildBadge(context), child: _buildBadge(context),
), ),
if (live is Map && ((live['liveStatus'] as int?) ?? 0) == 1) if (live is Map && ((live['liveStatus'] as int?) ?? 0) == 1)