Skip to content

Commit

Permalink
feat: wallet screen changes (#1593)
Browse files Browse the repository at this point in the history
  • Loading branch information
Merculiar authored Oct 26, 2024
1 parent 2ecbf58 commit 05b62a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,18 +107,18 @@ class _ScreenState extends State<WalletMainScreen> {
children: [
Expanded(
child: CpButton(
text: context.l10n.receive,
text: context.l10n.pay,
minWidth: width,
onPressed: widget.onRequest,
onPressed: widget.onPay,
size: CpButtonSize.big,
),
),
const SizedBox(width: 27.0),
Expanded(
child: CpButton(
text: context.l10n.pay,
text: context.l10n.receive,
minWidth: width,
onPressed: widget.onPay,
onPressed: widget.onRequest,
size: CpButtonSize.big,
),
),
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 05b62a2

Please sign in to comment.