Open
Description
Steps to reproduce
- Open app on a Samsung phone with One UI 7
- Enable on screen navigation buttons
This seems to happen regardless if resizeToAvoidBottomInset: false
or resizeToAvoidBottomInset: true
Expected results
Flutter app resizes to accommodate on screen navigation buttons
Actual results
On screen navigation buttons sit on top of the app
Code sample
Code sample
import 'package:flutter/material.dart';
class ExpiryNoticePage extends StatelessWidget {
const ExpiryNoticePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Chats'),
),
resizeToAvoidBottomInset: false,
body: SafeArea(
child: Column(
children: [
Expanded(
child: Container(), // Placeholder for content
),
Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
'All chats expire after 30 days',
style: TextStyle(
color: Colors.grey[600],
fontSize: 14,
),
),
),
],
),
),
);
}
}
Screenshots or Video
Logs
Logs
[Paste your logs here]
Flutter Doctor output
Doctor output
flutter doctor -v [4:20:56]
[✓] Flutter (Channel stable, 3.29.3, on macOS 15.4.1 24E263 darwin-arm64, locale en-ZA) [3.1s]
• Flutter version 3.29.3 on channel stable at /Users/stcm/Development/flutter
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision ea121f8859 (4 weeks ago), 2025-04-11 19:10:07 +0000
• Engine revision cf56914b32
• Dart version 3.7.2
• DevTools version 2.42.3
[✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0) [6.1s]
• Android SDK at /Users/stcm/Library/Android/sdk
• Platform android-35, build-tools 34.0.0
• Java binary at: /Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java
This is the JDK bundled with the latest Android Studio installation on this machine.
To manually set the JDK path, use: `flutter config --jdk-dir="path/to/jdk"`.
• Java version OpenJDK Runtime Environment (build 21.0.5+-13047016-b750.29)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 16.3) [3.6s]
• Xcode at /Applications/Xcode.app/Contents/Developer
• Build 16E140
• CocoaPods version 1.16.2
[✓] Chrome - develop for the web [18ms]
• Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
[✓] Android Studio (version 2024.3) [18ms]
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/9212-flutter
• Dart plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/6351-dart
• Java version OpenJDK Runtime Environment (build 21.0.5+-13047016-b750.29)
[✓] VS Code (version 1.99.3) [16ms]
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 3.108.0
[✓] VS Code (version 1.100.0) [16ms]
• VS Code at /Library/Application Support/JamfAppInstallers/com.microsoft.VSCode/root/Visual Studio Code.app/Contents
• Flutter extension version 3.108.0
[✓] Connected device (3 available) [7.8s]
• macOS (desktop) • macos • darwin-arm64 • macOS 15.4.1 24E263 darwin-arm64
• Mac Designed for iPad (desktop) • mac-designed-for-ipad • darwin • macOS 15.4.1 24E263 darwin-arm64
• Chrome (web) • chrome • web-javascript • Google Chrome 136.0.7103.49
! Error: Browsing on the local area network for Scott’s iPhone. Ensure the device is unlocked and attached with a cable or associated with the same local area network as this Mac.
The device must be opted into Developer Mode to connect wirelessly. (code -27)
[✓] Network resources [706ms]
• All expected network resources are available.
• No issues found!