style(wallet): tighten the gap under the wallet action tiles - #1319
Merged
Conversation
Scrolled to the end of the wallet tab, the 2x2 action tiles sat 60 dp above the floating tab bar, on top of an inset that already covers the bar and its own 15 dp drop. Drop that to 40 dp, which is what iOS leaves (a 96 pt trailing spacer against a 58 pt bar).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Scrolled to the end of the wallet tab, the 2x2 action tiles left 60 dp of air above the floating tab bar. That 60 dp sits on top of
LocalTabBarPadding, which already covers the bar, its 15 dp drop and the navigation-bar inset, so it read as a large empty band under the last row.This drops the extra clearance to 40 dp (
grid.x8), matching what iOS leaves under the same tiles: a 96 pt trailing spacer against a 58 pt bar.Only the
LazyColumn's bottomcontentPaddingchanges; nothing else on the screen moves.