Last updated:
0 purchases
perfect bottom sheet
Navigator.of(context).push(
PerfectBottomSheetRoute(
builder: (context, controller) {
return Material(
color: Colors.transparent,
child: ListView(
padding: EdgeInsets.only(
bottom: MediaQuery.of(context).padding.bottom,
top: 20,
),
controller: controller,
children: List.generate(
30,
(index) => Text("$index"),
),
),
);
},
),
);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.