Created
February 25, 2025 03:44
-
-
Save loic-sharma/8311710ac7a960abd079fb3ef9d4a38f to your computer and use it in GitHub Desktop.
Cupertino navigation bar covers the scaffold's child
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
import 'package:flutter/cupertino.dart'; | |
void main() { | |
runApp( | |
const CupertinoApp( | |
home: CupertinoPageScaffold( | |
navigationBar: CupertinoNavigationBar(), | |
child: Text('Hello world'), | |
), | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment