opt opus item

opt live dm

add audio qa type

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-22 17:54:08 +08:00
parent 8fc8bd99e5
commit 9e72fea67c
5 changed files with 27 additions and 15 deletions

View File

@@ -39,6 +39,8 @@ class _MemberOpusState extends State<MemberOpus>
tag: widget.heroTag,
);
late double _maxWidth;
@override
Widget build(BuildContext context) {
super.build(context);
@@ -121,6 +123,7 @@ class _MemberOpusState extends State<MemberOpus>
maxCrossAxisExtent: Grid.smallCardWidth,
mainAxisSpacing: StyleString.safeSpace,
crossAxisSpacing: StyleString.safeSpace,
callback: (value) => _maxWidth = value,
);
Widget _buildBody(LoadingState<List<SpaceOpusItemModel>?> loadingState) {
@@ -143,6 +146,7 @@ class _MemberOpusState extends State<MemberOpus>
}
return SpaceOpusItem(
item: response[index],
maxWidth: _maxWidth,
);
},
childCount: response!.length,