Flutter/Widget
[Flutter] showModalBottomSheet 디자인 모음(코드있음)
1. showModalBottomSheet( context: context, backgroundColor: Colors.white, isScrollControlled: true, builder: (context) { return SizedBox( height: MediaQuery.of(context).size.height * 0.7, width: double.infinity, child: Column( children: [ ///안에들어갈 아이템 추가 ], ), ); }, shape: const RoundedRectangleBorder( borderRadius: BorderRadius.only( topLeft: Radius.circular(20), topRight: Radius.circular(20), ..