sunny_fluro 1.12.0 sunny_fluro: ^1.12.0 copied to clipboard
Sunny Fluro is a fork of the popular fluro router for Flutter that adds the option for typed routes\n
1.12.0 #
- Graduate package to a stable release. See pre-releases prior to this version for changelog entries.
1.12.0-dev.6 #
- FEAT: bumping version.
1.12.0-dev.5 #
- FEAT: bumping version.
1.12.0-dev.4 #
- FEAT: bumping version.
1.12.0-dev.3 #
- FEAT: bumping version.
1.12.0-dev.2 #
- FEAT: bumping version.
1.12.0-dev.1 #
- FEAT: bumping version.
1.12.0-dev.0 #
- FEAT: bumping version.
[1.11.0+8] #
- Prepare for publish Updating deps 2.10.2
[1.11.0+7] #
- Prepare for publish Adding go method
[1.11.0+6] #
- Updated deps Gemfile
[1.11.0+5] #
- Updating generators, adding method to retrieve route by uri template
[1.11.0+4] #
- Fixing nullable parameters
[1.11.0+3] #
- Fixing nullable parameters
[1.11.0+2] #
- Updating nullable parameters
[1.11.0+1] #
- Ignore generated files Added typed routes fastlane update
[1.10.1+1] #
- Updated paths Typed AppRoute Version bump to: 1.9.0#8001 Adding missing file
[1.8.0+3] #
- Adding helper function
[1.8.0+2] #
- Updated errant null check
[1.8.0+1] #
- Minor bump
[1.8.0-nullsafe.4] #
- Fixing issue from newer dartxx
[1.8.0-nullsafe.3] #
- Changes for sunny_lifecycle Updated generator version Updating to null-safety
[1.8.0-nullsafe.2] #
- null ssafety bundle updaet
[1.7.0+1] #
- Updated minor version Updated bundle Updated fastlane Updated name
1.6.1 #
- Support for Flutter
1.12+
1.6.0 #
- No changes other than fixes for non-backwards compatible Flutter changes
- Flutter
>= 1.12.0
is required due to Flutter compatibility issues - Dart
>= 2.6.0
is required
1.5.2 #
- Remove dependency on
dart:io
- 1.5.x and lower now only supports Flutter versions
< 1.13.0
1.5.1 #
- Add explicit material and full screen material transition types
- Fix issue in transition logic
- Remove redundant
new
,const
, etc qualifiers - Tidy example
- Add font license info
1.5.0 #
- Native transitions will now use the Cupertino page route on iOS and Material page route on android. This will enable swipe gestures on iOS.
- Added cupertino specific transition types.
- You should not be using Cupertino types on non-iOS platforms. It's up to you, but it's bad design.
1.4.0 #
- Added the ability to define a transition at the point of route definition. Route transitions are optional and any transition defined a "push" will override the route definition.
1.3.7 #
- Add
toString
for customRouteNotFoundException
type
1.3.6 #
- Small fix to error return type when no route match was made
1.3.5 #
- add
pop
convenience - add
clearStack
flag so that you can clear the history when pushing a route
1.3.4 #
- Change lower dart version to cater to older flutter versions
1.3.3 #
- Fix analyzer issues
- Remove deprecations in example code
- Fix pubspec analysis issue
1.3.2 #
- Dart 2 package (pubspec) compliance changes ONLY
- Note: No functional changes
1.3.1 #
- Fixes an issue with the route generator (result cannot be Null)
1.3.0 #
- BREAKING: Parameters now return an array of results even if they have a single value.
- Support for parameter arrays. e.g:
/some/route?color=red&color=green&color=blue
. - Results can now be passed via
Navigator.pop
via use of aFuture
. - A few bug fixes
1.1.0 #
BREAKING: In order to support function handlers you will need to change all of your route
handler definitions to use the new Handler
class. The RouteHandler
definition has now been
removed.
Swapping out the handlers should be as simple as changing:
RouteHandler usersHandler = (Map<String, String> params) {}
to
var usersHandler = new Handler(handlerFunc: (BuildContext context, Map<String, dynamic> params) {});