mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
mobile exchange form top padding added
This commit is contained in:
parent
286f6a552b
commit
d71899d1df
1 changed files with 5 additions and 1 deletions
|
@ -43,7 +43,11 @@ class _ExchangeViewState extends ConsumerState<ExchangeView> {
|
||||||
handle: NestedScrollView.sliverOverlapAbsorberHandleFor(context),
|
handle: NestedScrollView.sliverOverlapAbsorberHandleFor(context),
|
||||||
sliver: const SliverToBoxAdapter(
|
sliver: const SliverToBoxAdapter(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: EdgeInsets.symmetric(horizontal: 16),
|
padding: EdgeInsets.only(
|
||||||
|
left: 16,
|
||||||
|
right: 16,
|
||||||
|
top: 16,
|
||||||
|
),
|
||||||
child: ExchangeForm(),
|
child: ExchangeForm(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue