fix(mobile): Set dynamic height of actions row in BottomSheet (#23755)

Co-authored-by: Alex <alex.tran1502@gmail.com>
pull/23768/head
Viktor Mykhailiv 2025-11-10 18:03:12 +07:00 committed by GitHub
parent da5a72f6de
commit b2cbefe41e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 7 deletions

@ -86,13 +86,9 @@ class _BaseDraggableScrollableSheetState extends ConsumerState<BaseBottomSheet>
SliverToBoxAdapter(
child: Column(
children: [
SizedBox(
height: 115,
child: ListView(
shrinkWrap: true,
scrollDirection: Axis.horizontal,
children: widget.actions,
),
SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(crossAxisAlignment: CrossAxisAlignment.start, children: widget.actions),
),
const Divider(indent: 16, endIndent: 16),
const SizedBox(height: 16),