-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
larger sceen support for sending #624
Conversation
issue-619-bad-ui.mov |
18db0dc
to
5bbe266
Compare
lib/routes/home/widgets/bottom_actions_bar/enter_payment_info_dialog.dart
Outdated
Show resolved
Hide resolved
5bbe266
to
db38951
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The buttons being one on top of the other is not a bug, it is how the dialog adapts itself when there is not enough available space for adding the buttons in the same row.
That is especially useful when we support multiple languages, e.g.:
- English: "approve"/"cancel" (13 chars)
- French: "approuver"/"annuler" (16 chars)
We can have scenarios where 13 chars fit in the same row but 16 do not.
The bug reported on #619 seems to be a problem with padding, we are not padding properly so the final space for the button is not what it looks like to be
a612ecc
to
1d8c90b
Compare
lib/routes/home/widgets/bottom_actions_bar/enter_payment_info_dialog.dart
Outdated
Show resolved
Hide resolved
1d8c90b
to
d0a25cf
Compare
Fixes #619.