Skip to content

Releases: nylo-core/support

v5.68.1

05 May 02:51
Compare
Choose a tag to compare
  • Update pubspec.yaml

v5.68.0

01 May 15:11
Compare
Choose a tag to compare
  • Add ErrorStack to the library
  • New useErrorStack helper added to Nylo. This will enable ErrorStack in your application.
  • Update pubspec.yaml

v5.67.1

29 Apr 06:12
Compare
Choose a tag to compare
  • Update pubspec.yaml

v5.67.0

28 Apr 10:09
Compare
Choose a tag to compare
  • Update confirmAction method in NyState to support more options

v5.66.0

25 Apr 10:03
Compare
Choose a tag to compare
  • Add updateRouteStack to Nylo. This method will update the route stack with a new routes.
  Nylo.updateRouteStack([
    HomePage.path,
    SettingPage.path
    ], dataForRoute: {
    SettingPage.path: {"name": "John Doe"}
    });
  • Add nylo.onDeepLink to listen for deep link events in your app.
  nylo.onDeepLink((String route, dynamic data) {
    print(data);
  });

v5.65.2

25 Apr 04:46
Compare
Choose a tag to compare
  • Update NyState to check that data is of Type Map before calling data[key]

v5.65.1

20 Apr 09:23
Compare
Choose a tag to compare

v5.65.0

20 Apr 03:28
Compare
Choose a tag to compare
  • Update NyPullToRefresh validate that the data is a List
  • Update NyListView validate that the data is a List

v5.64.0

17 Apr 09:04
Compare
Choose a tag to compare
  • Add the ability to set a custom transition to a route.group e.g. router.group(() => {'transition': PageTransitionType.fade}, (router) { ... })
  • Add the ability to set a transition_settings to a route.group e.g. router.group(() => {'transition_settings': PageTransitionSettings(duration: Duration(milliseconds: 500)}, (router) { ... })
  • Update _getPageTransitionIsIos to detect if the platform is iOS to use the CupertinoPageRoute for the transition
  • Small refactor to _getPageTransition.* methods in router.dart
  • Update pubspec.yaml

v5.63.0

08 Apr 02:43
Compare
Choose a tag to compare
  • New NyAction class added to the library
    • limitPerDay method added to NyAction class - This will limit the number of times an action can be performed in a day.
    • authorized method added to NyAction class - This will check if the user is authorized to perform an action.