Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added property to show inactive titles #114

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ The navigation bar uses your current theme, but you are free to customize it.
- `mainAxisAlignment` - use this property to change the horizontal alignment of the items. It is mostly used when you have ony two items and you want to center the items
- `curve` - param to customize the item change's animation
- `containerHeight` - changes the Navigation Bar's height
- `showInactiveTitle` - use this property show a Inactive titles. Defaults to false.

### BottomNavyBarItem
- `icon` - the icon of this item
Expand Down
4 changes: 3 additions & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,11 @@ class _MyHomePageState extends State<MyHomePage> {
child: Icon(Icons.add),
),
bottomNavigationBar: BottomNavyBar(
showInactiveTitle: true,
selectedIndex: _currentIndex,
showElevation: true,
itemCornerRadius: 24,
iconSize: 20,
curve: Curves.easeIn,
onItemSelected: (index) => setState(() => _currentIndex = index),
items: <BottomNavyBarItem>[
Expand All @@ -71,7 +73,7 @@ class _MyHomePageState extends State<MyHomePage> {
BottomNavyBarItem(
icon: Icon(Icons.message),
title: Text(
'Messages test for mes teset test test ',
'Messages Received',
),
activeColor: Colors.pink,
textAlign: TextAlign.center,
Expand Down
49 changes: 43 additions & 6 deletions lib/bottom_navy_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class BottomNavyBar extends StatelessWidget {
this.itemPadding = const EdgeInsets.symmetric(horizontal: 4),
this.animationDuration = const Duration(milliseconds: 270),
this.mainAxisAlignment = MainAxisAlignment.spaceBetween,
this.showInactiveTitle = false,
required this.items,
required this.onItemSelected,
this.curve = Curves.linear,
Expand Down Expand Up @@ -86,9 +87,13 @@ class BottomNavyBar extends StatelessWidget {
/// Used to configure the animation curve. Defaults to [Curves.linear].
final Curve curve;

/// Whether this navigation bar should show a Inactive titles. Defaults to false.
final bool showInactiveTitle;

@override
Widget build(BuildContext context) {
final bgColor = backgroundColor ?? (Theme.of(context).bottomAppBarTheme.color ?? Colors.white);
final bgColor = backgroundColor ??
(Theme.of(context).bottomAppBarTheme.color ?? Colors.white);

return Container(
decoration: BoxDecoration(
Expand Down Expand Up @@ -124,6 +129,7 @@ class BottomNavyBar extends StatelessWidget {
animationDuration: animationDuration,
itemPadding: itemPadding,
curve: curve,
showInactiveTitle: showInactiveTitle,
),
);
}).toList(),
Expand All @@ -143,6 +149,7 @@ class _ItemWidget extends StatelessWidget {
final Duration animationDuration;
final EdgeInsets itemPadding;
final Curve curve;
final bool showInactiveTitle;

const _ItemWidget({
Key? key,
Expand All @@ -153,6 +160,7 @@ class _ItemWidget extends StatelessWidget {
required this.itemCornerRadius,
required this.animationDuration,
required this.itemPadding,
required this.showInactiveTitle,
this.curve = Curves.linear,
}) : super(key: key);

Expand All @@ -162,7 +170,13 @@ class _ItemWidget extends StatelessWidget {
container: true,
selected: isSelected,
child: AnimatedContainer(
width: isSelected ? 130 : 50,
width: (showInactiveTitle)
? ((isSelected)
? MediaQuery.of(context).size.width * 0.25
: MediaQuery.of(context).size.width * 0.2)
: ((isSelected)
? MediaQuery.of(context).size.width * 0.3
: MediaQuery.of(context).size.width * 0.1),
height: double.maxFinite,
duration: animationDuration,
curve: curve,
Expand All @@ -175,8 +189,14 @@ class _ItemWidget extends StatelessWidget {
scrollDirection: Axis.horizontal,
physics: NeverScrollableScrollPhysics(),
child: Container(
width: isSelected ? 130 : 50,
padding: EdgeInsets.symmetric(horizontal: 8),
width: (showInactiveTitle)
? ((isSelected)
? MediaQuery.of(context).size.width * 0.25
: MediaQuery.of(context).size.width * 0.2)
: ((isSelected)
? MediaQuery.of(context).size.width * 0.3
: MediaQuery.of(context).size.width * 0.1),
padding: EdgeInsets.symmetric(horizontal: 4),
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.start,
Expand All @@ -193,8 +213,24 @@ class _ItemWidget extends StatelessWidget {
),
child: item.icon,
),
if (isSelected)
Expanded(
if (showInactiveTitle)
Flexible(
child: Container(
padding: itemPadding,
child: DefaultTextStyle.merge(
style: TextStyle(
color: item.activeColor,
fontWeight: FontWeight.bold,
),
maxLines: 1,
textAlign: item.textAlign,
overflow: TextOverflow.ellipsis,
child: item.title,
),
),
)
else if (isSelected)
Flexible(
child: Container(
padding: itemPadding,
child: DefaultTextStyle.merge(
Expand All @@ -204,6 +240,7 @@ class _ItemWidget extends StatelessWidget {
),
maxLines: 1,
textAlign: item.textAlign,
overflow: TextOverflow.ellipsis,
child: item.title,
),
),
Expand Down
Loading