-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from maheshmnj/navbar_type
Add support for new Navigationbar using `type: NavbartType.notched`
- Loading branch information
Showing
17 changed files
with
1,582 additions
and
601 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ | |
.buildlog/ | ||
.history | ||
.svn/ | ||
.metadata | ||
migrate_working_dir/ | ||
|
||
# IntelliJ related | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# This file tracks properties of this Flutter project. | ||
# Used by Flutter tool to assess capabilities and perform upgrades etc. | ||
# | ||
# This file should be version controlled and should not be manually edited. | ||
|
||
version: | ||
revision: cd41fdd495f6944ecd3506c21e94c6567b073278 | ||
channel: stable | ||
|
||
project_type: package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "navbar_router", | ||
"request": "launch", | ||
"type": "dart" | ||
}, | ||
{ | ||
"name": "navbar_router (profile mode)", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "profile" | ||
}, | ||
{ | ||
"name": "navbar_router (release mode)", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "release" | ||
}, | ||
{ | ||
"name": "example", | ||
"cwd": "example", | ||
"request": "launch", | ||
"type": "dart" | ||
}, | ||
{ | ||
"name": "example (profile mode)", | ||
"cwd": "example", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "profile" | ||
}, | ||
{ | ||
"name": "example (release mode)", | ||
"cwd": "example", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "release" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
{ | ||
"dart.flutterSdkPath": "/Users/mahesh/Development/flutter" | ||
"dart.flutterSdkPath": "/Users/mahesh/Development/flutter", | ||
"dart.autoImportCompletions": true, | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true | ||
}, | ||
"[dart]": { | ||
"editor.tabSize": 2, | ||
"editor.insertSpaces": true, | ||
"editor.detectIndentation": false, | ||
"editor.suggest.insertMode": "replace", | ||
"editor.defaultFormatter": "Dart-Code.dart-code", | ||
"editor.inlayHints.enabled": "offUnlessPressed", | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,37 @@ | ||
## [0.4.0] Dec 25, 2022 | ||
- [WIP Ref:#8](https://github.com/maheshmnj/navbar_router/issues/8) Adds support for custom Navbar using `NavbarRouter.type: NavbarType.notched` | ||
|
||
## [0.3.3] Aug 14, 2022 | ||
- Pop route programmatically | ||
|
||
## [0.3.2] Aug 14, 2022 | ||
|
||
- update docs | ||
|
||
## [0.3.1] Aug 14, 2022 | ||
|
||
- Fix back button did not pop up nested routes | ||
- add `initialIndex` property | ||
|
||
## [0.3.0] Aug 7, 2022 | ||
|
||
* Remember stack history on back button press [Issue 9](https://github.com/maheshmnj/navbar_router/issues/9) | ||
## [0.2.2] Jul 9, 2022 | ||
|
||
## [0.2.2] Jul 9, 2022 | ||
* Remove unnecessary shadow from BottomNavigationBar. | ||
|
||
## [0.2.1] Jul 2, 2022 | ||
|
||
* Add `onChanged` callback to `NavbarRouter` | ||
* Add decoration properties to `NavbarDecoration` | ||
|
||
## [0.2.0] Jun 26, 2022 | ||
|
||
* Add `isDesktop` property to make navbar adaptable | ||
to different screen sizes. | ||
|
||
## [0.1.2] Jun 16, 2022 | ||
|
||
* update docs and example | ||
* fix linter warnings | ||
|
||
## [0.1.0] Jun 15, 2022 | ||
|
||
* initial release. | ||
|
||
## [0.1.1] Jun 15, 2022 | ||
|
||
* Update dart constraints |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.