Skip to content

Commit

Permalink
fix(ui): set the correct behaviour an tablet for bottom bar
Browse files Browse the repository at this point in the history
  • Loading branch information
vareversat committed Sep 11, 2023
1 parent c1477eb commit 927908e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/widgets/floating_actions/floating_actions_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,11 @@ class _FloatingActionsWidgetState extends State<FloatingActionsWidget>
padding: DeviceHelper.isPortrait(context)
? const EdgeInsets.all(8)
: const EdgeInsets.symmetric(vertical: 8),
child: Wrap(
spacing: 5,
textDirection: TextDirection.rtl,
alignment: WrapAlignment.end,
child: Column(
mainAxisAlignment: MainAxisAlignment.end,
crossAxisAlignment: state.isRightHanded
? CrossAxisAlignment.end
: CrossAxisAlignment.start,
children: [
Row(
mainAxisSize: DeviceHelper.isPortrait(context)
Expand Down

0 comments on commit 927908e

Please sign in to comment.