-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy path14.fluid_bottom_bar.dart
65 lines (61 loc) · 1.91 KB
/
14.fluid_bottom_bar.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import 'package:fluid_bottom_nav_bar/fluid_bottom_nav_bar.dart';
import 'package:flutter/material.dart';
import 'package:ig_posts/features/1.flutter_frost_glass.view.dart';
class FlutterBottomBarView extends StatefulWidget {
const FlutterBottomBarView({Key? key}) : super(key: key);
@override
State<FlutterBottomBarView> createState() => _FlutterBottomBarViewState();
}
class _FlutterBottomBarViewState extends State<FlutterBottomBarView> {
int pageIndex = 0;
PageController pageController = PageController();
changeIndex({required int value}) {
setState(() {
pageIndex = value;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: bgColorFaint,
title: const Text(
"Animated bottom bar",
style: TextStyle(fontWeight: FontWeight.bold),
)),
backgroundColor: bgColor,
body: PageView(
controller: pageController,
children: const [
Center(
child: Text(
"Home view 🏠",
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 32),
),
),
Center(
child: Text(
"Profile view 🧛",
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 32),
)),
],
),
bottomNavigationBar: FluidNavBar(
defaultIndex: pageIndex,
style: const FluidNavBarStyle(
iconUnselectedForegroundColor: bgColor,
iconSelectedForegroundColor: Colors.white,
iconBackgroundColor: Colors.deepOrangeAccent,
barBackgroundColor: bgColorFaint),
icons: [
FluidNavBarIcon(icon: Icons.home),
FluidNavBarIcon(icon: Icons.person),
],
onChange: (val) {
changeIndex(value: val);
pageController.jumpToPage(pageIndex);
},
),
);
}
}