Skip to content

Commit

Permalink
fix: desktop exchange form overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-CStack committed May 5, 2023
1 parent 0ab96ad commit 38c4f6b
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,14 @@ class _DesktopExchangeViewState extends ConsumerState<DesktopExchangeView> {
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Expanded(
child: RoundedWhiteContainer(
padding: EdgeInsets.all(24),
child: ExchangeForm(),
Expanded(
child: ListView(
children: const [
RoundedWhiteContainer(
padding: EdgeInsets.all(24),
child: ExchangeForm(),
),
],
),
),
const SizedBox(
Expand Down

0 comments on commit 38c4f6b

Please sign in to comment.