Flutter의 맞춤 하단 탐색 메뉴 [중복]

Aug 16 2020

다음과 같은 flutter에서 사용자 지정 bottomNavigation Bar를 만드는 방법 :

답변

Bensal Aug 16 2020 at 16:58

이 플러그인은 이러한 하단 탐색 모음을 디자인하는 데 도움 이 됩니다.

Scaffold(
  bottomNavigationBar: ConvexAppBar(
    items: [
      TabItem(icon: Icons.home, title: 'Home'),
      TabItem(icon: Icons.map, title: 'Discovery'),
      TabItem(icon: Icons.add, title: 'Add'),
      TabItem(icon: Icons.message, title: 'Message'),
      TabItem(icon: Icons.people, title: 'Profile'),
  ],
  initialActiveIndex: 2,//optional, default as 0
  onTap: (int i) => print('click index=$i'),
 )
);

이 플러그인을 사용할 수도 있습니다.