v1.5.0bottom_bar_matu
美しいアニメーション付きのボトムナビゲーションバーで、アイコンデータを使用して簡単に実装できます。または独自のウィジェットでカスタマイズも可能です。
171いいね 16230日間ダウンロード140Pub ポイント
AndroidiOSWebmacOSWindowsLinux
Flutter用の美しいアニメーション付きのボトムナビゲーションバーパッケージ
{"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.