[Donfo] BottomNavigationBar, Firebase 환경설정, UI 개발
- 테마 세팅은 기존에 제공 받았던 파일을 활용함(노가다가 많아서) --> core에 넣어서 main.dart에 적용해줌.- main screen에서 app과 navigation bar 작업 했음. 대부분 UI 적인 요소.- bottom directory cubit을 main directory에 생성, main screen 파일에서 bottom navigation cubit 등록.enum BottomNav{home, category, search, user}class BottomNavCubit extends Cubit { BottomNavCubit() : super(BottomNav.home); void changeIndex(int index) => emit(BottomNav.values[index]..
projects/Flutter
2024. 5. 14. 02:39