diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b15f72..9c6eb5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.1.0 + +* option define a custom curve animation + ## 2.0.0 * option to show title/icon on selected item (added reverse mode) diff --git a/README.md b/README.md index 95981a8..5798c0c 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Follow these steps to use this library ```yaml dependencies: ... - titled_navigation_bar: ^2.0.0 + titled_navigation_bar: ^2.1.0 ``` ### Import the package @@ -62,6 +62,7 @@ bottomNavigationBar: TitledBottomNavigationBar( ### TitledBottomNavigationBar **onTap** - Use this to get notified when a item is clicked, you can retrieve the current item's index on this function. Should not be null!
**items** - The items of your bottom navigation bar. Use the **TitledNavigationBarItem** class to add items. Should not be null!
+**curve** - Use this to define your custom curve animation. Should not be null!
**reverse** - If true, the visible widget of the selected item will be the Text (with the title of the item). If false, the visible widget of the selected item will be the icon. Default to false
**activeColor** - The active Text/Icon color. The default color is the indicatorColor of your app Theme.
**inactiveColor** - The inactive Text/Icon color. The default is the black color.
diff --git a/pubspec.yaml b/pubspec.yaml index e087fcb..6bbb475 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: titled_navigation_bar description: A beautiful, clean and simple bottom navigation bar with smooth animation on click. This package is high customizable, read more bellow for more details. -version: 2.0.0 +version: 2.1.0 author: Pedro Massango homepage: https://github.com/pedromassango/titled_navigation_bar