[Flutter] 라운드 형태의 BottomNavigation


[Flutter] 라운드 형태의 BottomNavigation

Example BottomNavigation Scaffold( backgroundColor: Colors.white, body: SafeArea( child: IndexedStack( index: controller.tabIndex, children: [] ), ), bottomNavigationBar: Container( margin: const EdgeInsets.symmetric(horizontal: 20, vertical: 10), height: 70.h, decoration: BoxDecoration( color: Colors.white, boxShadow: [ BoxShadow( color: Colors.black.withOpacity(.15), blurRadius: 30, offset: const Offset(0, 10), ) ], borderRadius: BorderRadius.circular(23.r), ), child: Row( mainAxisAlignment: M...


#bottomnavigation #dart #flutter

원문링크 : [Flutter] 라운드 형태의 BottomNavigation