Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
namanh11611 committed Nov 10, 2024
1 parent 2aa7d1e commit 3856bea
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: flutter pub get

- name: Verify formatting
run: flutter format --output=none --set-exit-if-changed .
run: dart format --output=none --set-exit-if-changed .

# Consider passing '--fatal-infos' for slightly stricter analysis.
- name: Analyze project source
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [2.0.5]
- Fix textScaler

## [2.0.4]
- Update README

## [2.0.3]
- Integrate original changes

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This package is a fork of the original curved_navigation_bar from https://github

```yaml
dependencies:
curved_labeled_navigation_bar: ^2.0.3 #latest version
curved_labeled_navigation_bar: ^2.0.5 #latest version
```
### Easy to use
Expand Down Expand Up @@ -123,7 +123,7 @@ Scaffold(
child: Center(
child: Column(
children: <Widget>[
Text(_page.toString(), textScaleFactor: 10.0),
Text(_page.toString(), textScaler: TextScaler.linear(10.0)),
ElevatedButton(
child: Text('Go To Page of index 1'),
onPressed: () {
Expand Down
2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class _BottomNavBarState extends State<BottomNavBar> {
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(_page.toString(), textScaleFactor: 10.0),
Text(_page.toString(), textScaler: TextScaler.linear(10.0)),
ElevatedButton(
child: Text('Go To Page of index 1'),
onPressed: () {
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.0.3"
version: "2.0.5"
fake_async:
dependency: transitive
description:
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: curved_labeled_navigation_bar
description: Stunning Animating Curved Shape Navigation Bar. Adjustable color, background color, animation curve, animation duration.
version: 2.0.3
version: 2.0.5
homepage: https://github.com/namanh11611/curved_labeled_navigation_bar

environment:
Expand Down

0 comments on commit 3856bea

Please sign in to comment.