selfprivacy.org.app/lib/ui/components/brand_tab_bar/brand_tab_bar.dart

70 lines
1.9 KiB
Dart
Raw Normal View History

2022-02-16 07:28:29 +00:00
import 'package:easy_localization/easy_localization.dart';
2020-11-29 20:07:46 +00:00
import 'package:flutter/material.dart';
import 'package:selfprivacy/config/brand_colors.dart';
import 'package:selfprivacy/ui/components/brand_icons/brand_icons.dart';
final _kBottomTabBarHeight = 51;
2020-12-08 19:26:51 +00:00
class BrandTabBar extends StatefulWidget {
2021-03-15 15:39:44 +00:00
BrandTabBar({Key? key, this.controller}) : super(key: key);
2020-11-29 20:07:46 +00:00
2021-03-15 15:39:44 +00:00
final TabController? controller;
2020-11-29 20:07:46 +00:00
@override
2020-12-08 19:26:51 +00:00
_BrandTabBarState createState() => _BrandTabBarState();
2020-11-29 20:07:46 +00:00
}
2020-12-08 19:26:51 +00:00
class _BrandTabBarState extends State<BrandTabBar> {
2021-03-15 15:39:44 +00:00
int? currentIndex;
2020-11-29 20:07:46 +00:00
@override
void initState() {
2021-03-15 15:39:44 +00:00
currentIndex = widget.controller!.index;
widget.controller!.addListener(_listener);
2020-11-29 20:07:46 +00:00
super.initState();
}
2020-12-10 20:33:19 +00:00
_listener() {
2021-03-15 15:39:44 +00:00
if (currentIndex != widget.controller!.index) {
2020-12-10 20:33:19 +00:00
setState(() {
2021-03-15 15:39:44 +00:00
currentIndex = widget.controller!.index;
2020-12-10 20:33:19 +00:00
});
}
}
@override
void dispose() {
2021-03-15 15:39:44 +00:00
widget.controller ?? widget.controller!.removeListener(_listener);
2020-12-10 20:33:19 +00:00
super.dispose();
}
2020-11-29 20:07:46 +00:00
@override
Widget build(BuildContext context) {
2022-05-03 10:45:10 +00:00
return NavigationBar(
destinations: [
_getIconButton('basis.providers'.tr(), BrandIcons.server, 0),
_getIconButton('basis.services'.tr(), BrandIcons.box, 1),
_getIconButton('basis.users'.tr(), BrandIcons.users, 2),
_getIconButton('basis.more'.tr(), BrandIcons.menu, 3),
],
onDestinationSelected: (index) {
widget.controller!.animateTo(index);
},
selectedIndex: currentIndex ?? 0,
labelBehavior: NavigationDestinationLabelBehavior.onlyShowSelected,
2020-12-08 19:26:51 +00:00
2020-11-29 20:07:46 +00:00
);
}
_getIconButton(String label, IconData iconData, int index) {
2022-02-16 07:28:29 +00:00
var activeColor = Theme.of(context).brightness == Brightness.dark
2020-12-08 19:26:51 +00:00
? BrandColors.white
: BrandColors.black;
2021-01-06 17:35:57 +00:00
var isActive = currentIndex == index;
2022-02-16 07:28:29 +00:00
var color = isActive ? activeColor : BrandColors.inactive;
2022-05-03 10:45:10 +00:00
return NavigationDestination(
icon: Icon(iconData),
label: label,
2020-11-29 20:07:46 +00:00
);
}
}