Am trying to show bottom sheeet at app launch automatically in flutter, but it comes with errors. It only works for me when I instantiate it with a click event. But how can i pop it on screen launch?
@override
Widget build(BuildContext context) {
showModalBottomSheet(context: context, builder: (BuildContext context) {
return Container();
});