fix(ui): keep bottom-anchored content clear of system bars β release 1.7.3 - #229
Merged
Conversation
Android 15's enforced edge-to-edge (targetSdk 35) extends the Scaffold body behind the navigation bar, and the app used no SafeArea anywhere. Bottom-pinned buttons (invite members, create event, save forms, join group), modal bottom sheets, and non-ListView scrollables were drawn behind the 3-button/gesture bar. - Wrap bottom-anchored layouts in SafeArea(top: false): group members/ events tabs, group form, group join, profile, auth, schedule create - Pad modal bottom sheets (invite modal, default-rule action sheet) - Add trailing bottom-inset SliverPadding to the schedule details CustomScrollView (slivers don't apply insets automatically) - Modernize deprecated widget APIs: RadioGroup in the locale screen (now scrollable), withOpacity -> withValues Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
What
Fixes the user-reported bug where the "Invite some friends!" button in a group's Members tab was hidden behind the Android 3-button navigation bar β and every other instance of the same class of bug.
Why
Recent Flutter targets Android SDK 35, where Android 15 enforces edge-to-edge: the Scaffold body extends behind the system navigation bar. The app used no
SafeAreaanywhere, so anything bottom-anchored that isn't aListView(which applies the inset automatically) or a Scaffold-managed slot (FAB, app bar) was drawn under the bar.Changes
SafeArea(top: false)around bottom-anchored layouts: group Members/Events tabs (the reported bug), group form, group join, profile, auth, and schedule-create screensSliverPaddingin the schedule-detailsCustomScrollView(slivers don't apply insets automatically)RadioGroup(and made scrollable),withOpacityβwithValuesRelease prep
changelogs/default.txt+release_notes.txt)Verification
flutter analyzeclean (warnings/errors: none; fixed 9 deprecation infos)π€ Generated with Claude Code