Skip to content

Releases: nylo-core/nylo

v6.10.0

17 Jul 06:09
Compare
Choose a tag to compare
  • Added appLifecycle to Nylo.init. This will allow you to globally handle your app's lifecycle.
  • Added excludeKeys to NyStorage.deleteAll. This will allow you to exclude certain keys from being deleted when calling deleteAll.
  • Added hasExecutedTaskOnce in NyScheduler. This will allow you to check if a task has been executed.
  • Add missing annotations
  • pubspec.yaml updates

v6.9.3

24 Jun 07:06
Compare
Choose a tag to compare
  • Added set to NySession class. This will allow you to set a value in the session.
  • Added onFailure parameter to isSuccessful method in NyValidator.
  • Fix getInitialRouteName to return the correct initial route name when, when is used.
  • Added PullableConfig to pullable widget.
  • Added new visibleWhen extension to Widget class. This will allow you to show or hide a widget based on a condition.
  • Added onPop to the pushTo method. This will allow you to receive a callback when the page is popped.
  • Added removeFromIndex to NyPullToRefresh. This will allow you to remove an item from the list at a specific index.
  • Bug fix for NyTextField onChanged method.
  • Fix analysis_options.yaml

v6.9.2

29 May 08:22
Compare
Choose a tag to compare
  • Fix: getEnv helper to return an empty string if a variable is set like this APP_WEBSITE=""
  • Update pubspec.yaml

v6.9.1

02 May 03:26
Compare
Choose a tag to compare
  • Add: export 'form_chips and form_radio' to ny_widgets.dart
  • Add: prefixIcon to Field.password
  • Fix: _whenStateAction method in NyState
  • Fix: postman imports

v6.9.0

25 Apr 01:45
Compare
Choose a tag to compare
  • Added: nylo.broadcastEvents()to broadcast events to all listeners.
  • Added: listenOn to listen to events in your app. E.g. listenOn<MyEvent>((event) { });
  • Added: listen helper in NyPage and NyState to listen to events in your app. E.g. listen<MyEvent>((event) { });
  • Updated: event helper to support new broadcast parameter. E.g. event<MyEvent>(data: {...}, broadcast: true);

v6.8.9

19 Apr 07:24
Compare
Choose a tag to compare
  • Small breaking change to stateActions:
    • Was: Map<String, Function()> get stateActions
    • Now: Map<String, Function> get stateActions
  • Added: JourneyProgressStyle? progressStyle; to journey widget
  • Added: JourneyButtonStyle? buttonStyle; to journey widget
  • Added: backgroundGradient to bottomNav, topNav and journey widget
  • Updated: stateAction to support new data parameter
  • New progress styles added to JourneyProgressStyle - linear, dots, numbered, segments, circular, timeline, custom
  • New JourneyButtonStyle added to JourneyState - standard, minimal, outlined, contained, custom

v6.8.8

16 Apr 12:15
Compare
Choose a tag to compare
  • pubspec.yaml updates

v6.8.7

16 Apr 07:20
Compare
Choose a tag to compare
  • Added: JourneyState class to help manage NavigationHubLayout.journey
  • Added: JourneyHelper class to help manage JourneyState's
  • Added: makeJourneyWidget method to MetroService class
  • Added: parentOption to constants
  • Added: syncToStorage method to NySession class. This will sync the session data to storage
  • Added: syncFromStorage method to NySession class. This will sync the session data from storage
  • Update navigation_hub stub
  • Ability to create multiple stateful_widgets at once using Metro. E.g. metro make:stateful_widget home,settings
  • Ability to create multiple stateless_widgets at once using Metro. E.g. metro make:stateless_widget home,settings
  • pubspec.yaml updates

v6.8.6

11 Apr 12:31
Compare
Choose a tag to compare
  • pubspec.yaml updates

v6.8.5

11 Apr 02:03
Compare
Choose a tag to compare
  • Small refactor