-
-
Notifications
You must be signed in to change notification settings - Fork 280
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
fix: Fixed buttons not having equal heights #4234
Conversation
The issue is also for the ingredients screen @hsradA23 |
@g123k Can you give a screenshot of the ingredients screen, I have not been able to find the issue with these two ingredient screens: |
You're on the wrong screen, it's the ingredients editor, not viewer. https://user-images.githubusercontent.com/246838/248502679-13261cb9-5753-4151-8da3-1c7e5790d2cc.png |
Fixed the buttons having unequal height on the ingredients page.
Expanded( | ||
child: Padding( | ||
padding: const EdgeInsets.symmetric( | ||
horizontal: SMALL_SPACE), |
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.
Could you add a comma here to have a better formatted code, please?
Expanded( | ||
child: Padding( | ||
padding: const EdgeInsets.symmetric( | ||
horizontal: SMALL_SPACE), |
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 same here please
Expanded( | ||
child: Padding( | ||
padding: | ||
const EdgeInsets.symmetric(horizontal: SMALL_SPACE), |
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.
Same here
Expanded( | ||
child: Padding( | ||
padding: | ||
const EdgeInsets.symmetric(horizontal: SMALL_SPACE), |
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.
Same here
language: widget.language, | ||
isLoggedInMandatory: true, | ||
Container( | ||
margin: EdgeInsets.only(bottom: SMALL_SPACE), |
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.
Could you add a const
before (the reason why the test fails)
imageField: widget.imageField, | ||
language: widget.language, | ||
isLoggedInMandatory: true, | ||
Container( |
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.
As you only use a Container
, could you switch to a Padding
one instead, please?
@hsradA23 are you still working on this ? if not, I will close the PR. |
What
Screenshot
Fixes bug(s)
Part of