79104777

Date: 2024-10-19 11:18:41
Score: 1.5
Natty:
Report link

showModalBottomSheet( isScrollControlled: true, context: context, builder: (context) { return MediaQuery( data: MediaQueryData.fromWindow(WidgetsBinding.instance.window), child: SafeArea( child: Column( children: [ Row( children: [ IconButton( onPressed: () => Navigator.of(context).pop(), icon: const Icon(Icons.close), ), ], ), Expanded( child: ListView.builder( itemBuilder: (context, index) => ListTile( title: Text('Item $index'), ), itemCount: 10, ), ), ], ), ), ); }, );

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bharath Naik