Skip to content

Commit

Permalink
fix: spacings
Browse files Browse the repository at this point in the history
  • Loading branch information
damian-molinski committed Sep 27, 2024
1 parent 6ed46a3 commit 0e7d3e7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@ class _Body extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SingleChildScrollView(
padding: const EdgeInsets.symmetric(horizontal: 20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const SizedBox(height: 20),
SeedPhrasesViewer(words: words),
const SizedBox(height: 10),
VoicesTextButton(
Expand Down Expand Up @@ -95,16 +97,20 @@ class _Navigation extends StatelessWidget {
Widget build(BuildContext context) {
return Row(
children: [
VoicesBackButton(
onTap: () {
RegistrationBloc.of(context).add(const PreviousStepEvent());
},
Expanded(
child: VoicesBackButton(
onTap: () {
RegistrationBloc.of(context).add(const PreviousStepEvent());
},
),
),
const SizedBox(width: 10),
VoicesNextButton(
onTap: isNextEnabled
? () => RegistrationBloc.of(context).add(const NextStepEvent())
: null,
Expanded(
child: VoicesNextButton(
onTap: isNextEnabled
? () => RegistrationBloc.of(context).add(const NextStepEvent())
: null,
),
),
],
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final class RegistrationBloc
RegistrationBloc()
: _keychainCreationController = KeychainCreationController(),
_walletLinkController = WalletLinkController(),
super(const WalletLink()) {
super(const GetStarted()) {
_keychainCreationController.addListener(_onKeychainControllerChanged);
_walletLinkController.addListener(_onWalletLinkControllerChanged);

Expand Down

0 comments on commit 0e7d3e7

Please sign in to comment.