Skip to content

Instantly share code, notes, and snippets.

@loic-sharma
Created February 25, 2025 03:58
Show Gist options
  • Save loic-sharma/88743a6ce470c0a00da9dbdea1545093 to your computer and use it in GitHub Desktop.
Save loic-sharma/88743a6ce470c0a00da9dbdea1545093 to your computer and use it in GitHub Desktop.
Cupertino navigation bar clipping
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