v1.5.0bottom_bar_matu
아름답고 애니메이션 효과가 있는 하단 탐색 바로, 아이콘 데이터를 사용하여 쉽게 구현하거나 자체 위젯으로 맞춤 설정할 수 있습니다.
171좋아요 16230일 다운로드140Pub 점수
AndroidiOSWebmacOSWindowsLinux
플러터용 아름다운 애니메이션 바텀 네비게이션 바 패키지
{"sdk":"flutter"}{"sdk":"flutter"}^2.0.0아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A beautiful and animated bottom navigation bar.
Here are some supported style:
DEMO
DEMO
DEMO
bottomNavigationBar: BottomBarBubble(
selectedIndex: _index,
items: [
BottomBarItem(iconData: Icons.home),
BottomBarItem(iconData: Icons.chat),
BottomBarItem(iconData: Icons.notifications),
BottomBarItem(iconData: Icons.calendar_month),
BottomBarItem(iconData: Icons.settings),
],
onSelect: (index) {
// implement your select function here
},
),
bottomNavigationBar: BottomBarBubble(
selectedIndex: _index,
items: [
BottomBarItem(
iconBuilder: (color) => Image.asset('assets/ic_alarm.png', color: color, height: 30, width: 30)),
BottomBarItem(
iconBuilder: (color) => Image.asset('assets/ic_bill.png', color: color, height: 30, width: 30)),
BottomBarItem(
iconBuilder: (color) => Image.asset('assets/ic_box.png', color: color, height: 30, width: 30)),
],
onSelect: (index) {
// implement your select function here
},
),
Copyright (c) 2021 Tuannvm
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.