목록showModalBottomSheet (1)
민프

Flutter 개발을 할 때마다 느끼는거지만 개발 시간을 줄이기 위한 기본 위젯들이 잘 되어있다고 생각합니다. 이번 포스팅에서는 Flutter BottomSheet를 적용해보려고 합니다. 먼저 결과 화면을 봐볼까요? 위 영상에서 댓글 아이콘을 누르면 BottomSheet가 잘 나오는 것을 확인할 수 있습니다. 위 BottomSheet를 아래 예시 코드를 입력하면 쉽게 구현할 수 있습니다. void _onCommentsTap(BuildContext context) { showModalBottomSheet( context: context, builder: (context) => Container(), ); } . . . GestureDetector( onTap: () => _onCommentsTap(cont..
Frontend/[Flutter]
2023. 9. 8. 14:40