[Flutter] 하단 메뉴바 만들기(bottomNavigationBar)
앱 하단에 페이지 전환을 위한 바를 만들고 싶을 경우 bottomNavigationBar 클래스를 사용함. 예시 bottomNavigationBar: BottomNavigationBar( fixedColor: Colors.black, unselectedItemColor: Colors.black, showUnselectedLabels: true, selectedFontSize: 12, unselectedFontSize: 12, iconSize: 28, type: BottomNavigationBarType.fixed, items: [ BottomNavigationBarItem( icon: Icon(Icons.home_filled), label: '홈', backgroundColor: Colors.white,..
[Flutter] 하단 오른쪽 떠다니는 버튼 만들기(floatingActionButton)
오른쪽 하단에 표시되는 버튼 생성은 아래와 같이 함. floatingActionButton: FloatingActionButton( onPressed: () {}, backgroundColor: Color.fromARGB(255, 40, 94, 194), elevation: 1, child: Icon( Icons.add_rounded, size: 36, ), ),