Skip to content

Commit

Permalink
release version 1.0.3 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
princeteck authored Sep 16, 2022
1 parent f012a1f commit bfd7c6f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@

##[1.0.3] - 2021-09-16
* `ReadMe.MD` updated.
* `Changelog.md` updated.
* Release Version updated to 1.0.3 from github by @princeteck in https://github.com/prodevplus/cnav/pull/5

##[1.0.2] - 2021-09-16
* `Screenshot` url updated with `github` links updated.
* screenshot links updated with live likes from github by @princeteck in https://github.com/prodevplus/cnav/pull/4

##[1.0.1] - 2021-09-16
* `Changelog.md` updated.
Expand Down
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,16 @@ dependencies:
```dart
CNavItem(
{@required this.icon,
Widget selectedIcon,
this.title,
Text selectedTitle,
this.badgeCount = 0,
this.showBadge = false})
: selectedIcon = selectedIcon ?? icon,
selectedTitle = selectedTitle ?? title;
{
required this.icon,
Widget selectedIcon,
this.title,
Text selectedTitle,
this.badgeCount = 0,
this.showBadge = false,
})
: selectedIcon = selectedIcon ?? icon,
selectedTitle = selectedTitle ?? title;

///
/// The icon of the item
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: cnav
description: A custom navigation bar a.k.a `CNav` with bubble click and many templates / theme to use effect.
version: 1.0.0
version: 1.0.3
homepage: https://packages.prodevplus.com/cnav

environment:
Expand Down

0 comments on commit bfd7c6f

Please sign in to comment.