chip_navigation_bar 1.0.0
chip_navigation_bar: ^1.0.0 copied to clipboard
A highly customizable chip-style navigation bar for Flutter with smooth animations and a modern design.
0.0.2 #
Added #
- Initial implementation of
ChipNavigationBarwidget. ChipNavigationBarconstructor with the following parameters:items: List ofChipNavigationBarItem.currentIndex: Index of the currently selected item.onTap: Callback function when an item is tapped.backgroundColor: Optional background color of the navigation bar.height: Height of the navigation bar, default is 56.0.pageColors: Optional list of colors for each page.width: Optional width of the navigation bar.
1.0.0 #
Added #
-
Customizable Animation:
-
Added
animationDurationto control the duration of animations. -
Added
animationCurveto customize the animation curve.
-
-
Customizable Shadow:
- Added
selectedItemShadowto allow customization of the shadow for the selected item.
- Added
-
Haptic Feedback:
- Added
enableHapticFeedbackto provide tactile feedback when an item is tapped.
- Added
-
RTL Support:
- Added
isRTLto support right-to-left layouts.
- Added
-
Customizable Item Padding:
- Added
itemPaddingto adjust the padding around each item.
- Added
-
Customizable Border Radius:
-
Added
borderRadiusto customize the border radius of the navigation bar. -
Added
selectedItemBorderRadiusto customize the border radius of the selected item.
-
-
Customizable Icon and Label Sizes:
-
Added
iconSizeto control the size of icons. -
Added
labelFontSizeto control the size of labels.
-
-
Background Gradient:
- Added
backgroundGradientto apply a gradient background to the navigation bar.
- Added
-
Customizable Item Spacing:
- Added
itemSpacingto control the space between items.
- Added
-
Customizable Label Font Weight:
- Added
labelFontWeightto customize the font weight of labels.
- Added
-
Customizable Label Padding:
- Added
labelPaddingto adjust the space between the icon and label.
- Added
-
Customizable Item Alignment:
- Added
itemAlignmentto control the alignment of items within the navigation bar.
- Added
-
Customizable Active and Inactive Colors:
-
Added
inactiveIconColorto customize the color of inactive icons. -
Added
activeIconColorto customize the color of active icons. -
Added
activeLabelColorto customize the color of active labels.
-
Updated #
- Improved documentation and example usage in the
README.mdfile.