Do we have an easy way of doing that kind of menu below using CupertinoApp
only ?
Ok, so we can use a Scaffold
inside a CupertinoPageScaffold
like that and still use the material ListTile
which look the same as Cupertino ones.
@override
Widget build(BuildContext context) {
return CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar(
middle: Text('My List'),
),
child: SafeArea(
child: Scaffold(
body: _listView(context),
),
),
);
}
You can try this at pub.dev:
cupertino_list_tile: ^0.2.0
https://pub.dev/packages/cupertino_list_tile
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With