Created
February 25, 2025 03:58
-
-
Save loic-sharma/88743a6ce470c0a00da9dbdea1545093 to your computer and use it in GitHub Desktop.
Cupertino navigation bar clipping
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( | |
CupertinoApp( | |
home: CupertinoPageScaffold( | |
navigationBar: CupertinoNavigationBar( | |
trailing: CupertinoButton( | |
child: Text('Close'), | |
onPressed: () {}, | |
), | |
), | |
child: Text('Hello world'), | |
), | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment