Skip to content

Instantly share code, notes, and snippets.

@loic-sharma
Created February 25, 2025 03:44
Show Gist options
  • Save loic-sharma/8311710ac7a960abd079fb3ef9d4a38f to your computer and use it in GitHub Desktop.
Save loic-sharma/8311710ac7a960abd079fb3ef9d4a38f to your computer and use it in GitHub Desktop.
Cupertino navigation bar covers the scaffold's child
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