[TIL-4] PopupMenuButton, bottomsheet Flutter 중고마켓 앱 정리
📱 Flutter 중고마켓 앱 TIL 정리1. MyTab UI 구현사용자 프로필 박스를 Row로 구성하고, 우측에 버튼 배치각 항목을 GestureDetector로 감싸고, SnackBar로 피드백 처리Row( children: [ UserProfileImage(dimension: 50, imgSrc: 'https://...'), SizedBox(width: 10), Expanded(child: Text('오상구님')), GestureDetector( onTap: () {}, // 프로필수정 child: Container( padding: EdgeInsets.symmetric(horizontal: 12, vertical: 8), colo..
2025. 4. 15.