728x90
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),
),
),
);
추후 업데이트 예정...
'Flutter > Widget' 카테고리의 다른 글
[Flutter] Scrollbar 사용방법 (1) | 2024.04.26 |
---|---|
[Flutter] Checkbox 디자인 모음 (코드있음) (2) | 2023.11.08 |
[Flutter] TextFormField 디자인 모음 (코드있음) (0) | 2023.11.08 |
[Flutter] Align //배치위젯 (0) | 2022.11.16 |
[Flutter] - AbsorbPointer //터치이벤트제어 (0) | 2022.11.15 |