stylish_bottom_bar 1.0.1 stylish_bottom_bar: ^1.0.1 copied to clipboard
A collection of stylish bottom navigation bars like animated bottom bar and bubble bottom bar for flutter.
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:stylish_bottom_bar/model/bar_items.dart';
import 'package:stylish_bottom_bar/stylish_bottom_bar.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Stylish Bottom Navigation Bar Example',
theme: ThemeData(
// useMaterial3: true,
primarySwatch: Colors.green,
),
// home: const BubbelBarExample(),
home: const AnimatedBarExample(),
);
}
}
class AnimatedBarExample extends StatefulWidget {
const AnimatedBarExample({
Key? key,
}) : super(key: key);
@override
State<AnimatedBarExample> createState() => _AnimatedBarExampleState();
}
class _AnimatedBarExampleState extends State<AnimatedBarExample> {
dynamic selected;
var heart = false;
PageController controller = PageController();
@override
void dispose() {
controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
extendBody: true, //to make floating action button notch transparent
//to avoid the floating action button overlapping behavior,
// when a soft keyboard is displayed
// resizeToAvoidBottomInset: false,
bottomNavigationBar: StylishBottomBar(
items: [
BottomBarItem(
icon: const Icon(
Icons.house_outlined,
),
selectedIcon: const Icon(Icons.house_rounded),
// selectedColor: Colors.teal,
backgroundColor: Colors.teal,
title: const Text('Home'),
),
BottomBarItem(
icon: const Icon(Icons.star_border_rounded),
selectedIcon: const Icon(Icons.star_rounded),
selectedColor: Colors.red,
// unSelectedColor: Colors.purple,
// backgroundColor: Colors.orange,
title: const Text('Star'),
),
BottomBarItem(
icon: const Icon(
Icons.style_outlined,
),
selectedIcon: const Icon(
Icons.style,
),
backgroundColor: Colors.amber,
selectedColor: Colors.deepOrangeAccent,
title: const Text('Style')),
BottomBarItem(
icon: const Icon(
Icons.person_outline,
),
selectedIcon: const Icon(
Icons.person,
),
backgroundColor: Colors.purpleAccent,
selectedColor: Colors.deepPurple,
title: const Text('Profile')),
],
hasNotch: true,
fabLocation: StylishBarFabLocation.center,
currentIndex: selected ?? 0,
onTap: (index) {
controller.jumpToPage(index);
setState(() {
selected = index;
});
},
option: AnimatedBarOptions(
// iconSize: 32,
barAnimation: BarAnimation.fade,
iconStyle: IconStyle.animated,
// opacity: 0.3,
),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
setState(() {
heart = !heart;
});
},
backgroundColor: Colors.white,
child: Icon(
heart ? CupertinoIcons.heart_fill : CupertinoIcons.heart,
color: Colors.red,
),
),
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
body: SafeArea(
child: PageView(
controller: controller,
children: const [
Center(child: Text('Home')),
Center(child: Text('Star')),
Center(child: Text('Style')),
Center(child: Text('Profile')),
],
),
),
);
}
}
//
//Example to setup Bubble Bottom Bar with PageView
class BubbelBarExample extends StatefulWidget {
const BubbelBarExample({Key? key}) : super(key: key);
@override
State<BubbelBarExample> createState() => _BubbelBarExampleState();
}
class _BubbelBarExampleState extends State<BubbelBarExample> {
PageController controller = PageController(initialPage: 0);
var selected = 0;
@override
void dispose() {
controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: PageView(
controller: controller,
children: const [
// Home(),
// Add(),
// Profile(),
],
),
bottomNavigationBar: StylishBottomBar(
option: BubbleBarOptions(
barStyle: BubbleBarStyle.vertical,
// barStyle: BubbleBarStyle.vertical,
bubbleFillStyle: BubbleFillStyle.fill,
// bubbleFillStyle: BubbleFillStyle.outlined,
opacity: 0.3,
),
items: [
BottomBarItem(
icon: const Icon(Icons.abc),
title: const Text('Abc'),
backgroundColor: Colors.red,
// selectedColor: Colors.pink,
selectedIcon: const Icon(Icons.read_more),
),
BottomBarItem(
icon: const Icon(Icons.safety_divider),
title: const Text('Safety'),
selectedColor: Colors.orange,
),
BottomBarItem(
icon: const Icon(Icons.cabin),
title: const Text('Cabin'),
backgroundColor: Colors.purple,
),
],
fabLocation: StylishBarFabLocation.end,
// hasNotch: true,
currentIndex: selected,
onTap: (index) {
setState(() {
selected = index;
controller.jumpToPage(index);
});
},
),
floatingActionButton: FloatingActionButton(
onPressed: () {},
child: const Icon(Icons.emoji_emotions),
),
floatingActionButtonLocation: FloatingActionButtonLocation.endDocked,
);
}
}