Skip to content

Releases: nylo-core/nylo

v6.7.1

28 Feb 04:33
Compare
Choose a tag to compare
  • pubspec.yaml updates

v6.7.0

27 Feb 07:25
Compare
Choose a tag to compare
  • Remove <uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
  • Added label to Forms. E.g. Field.email('Email', label: 'Email Address')
  • Added Radio to Forms. E.g. Field.radio("Favourite Color", options: ["Red", "Blue", "Green"])
  • Added Widget to Forms. E.g. Field.widget(child: MyWidget())
  • Add submitButton to NyFormData Read more here
  • Add ny_networking.dart, ny_router.dart, ny_alerts.dart, ny_helpers.dart to make it easier to import the different parts of the library
  • Update sleep method to support micro seconds. E.g. sleep(0, 500) will sleep for 500 microseconds
  • Small bug fix for NavigationTab.alerts
  • Merge PR from israelins85
  • Update pubspec.yaml

v6.6.3

24 Feb 04:53
Compare
Choose a tag to compare
  • Fix issue when resetting the NyPullToRefresh widget
  • Added new stateAction() helper to allow you to send state actions to the NyState or NyPage class
  • New whenStateAction(Map<String, Function()> actions) method added to NyState and NyPage classes to handle state actions
    • E.g. whenStateAction({"showDialog": () => showDialog()})
  • New Map<String, Function()> get stateActions => {} getter added to NyState and NyPage classes to handle state actions
    • E.g. Map<String, Function()> get stateActions => {"showDialog": () => showDialog()};
  • Update GitHub workflows
  • Merge PR from rytisder to fix page_w_controller_stub.dart
  • Update pubspec.yaml

v6.6.2

10 Feb 05:37
Compare
Choose a tag to compare
  • pubspec.yaml updates

v6.6.1

05 Feb 03:11
Compare
Choose a tag to compare
  • Update pubspec.yaml

v6.6.0

04 Feb 07:57
Compare
Choose a tag to compare
  • Ability to scaffold in-app purchases via RevenueCat
  • Use dart run scaffold_ui:main iap and then select RevenueCat
  • Added firebase to the list of available auth scaffolds
  • Forms - Ability to set fields as readOnly
    • Fix issue "stream has already been listened to" #215
  • Fixes for NavigationHub
  • Small refactor to Pullable widget
  • Update pubspec.yaml

v6.5.0

02 Feb 04:17
Compare
Choose a tag to compare
  • Update dark_theme to include a default for timePickerTheme and datePickerTheme
  • Add new NavigationTab.alert widget for supporting alerts in the NavigationTab
  • New extension toBool and tryParseBool added to String class
  • dart format
  • New StateActions added to NavigationHubStateActions
    • alertEnableTab - Enable the alert for a specific tab
    • alertDisableTab - Disable the alert for a specific tab
  • Update pubspec.yaml

v6.4.10

26 Jan 12:26
Compare
Choose a tag to compare
  • Added comprehensive DateTime manipulation methods:
    • Year operations: addYears() and subtractYears()
    • Month operations: addMonths() and subtractMonths()
    • Day operations: addDays() and subtractDays()
    • Hour operations: addHours() and subtractHours()
    • Minute operations: addMinutes() and subtractMinutes()
    • Second operations: addSeconds() and subtractSeconds()
  • Update NavigationHub to support the following:
    • Set a default current tab index: Override currentIndex in your NavigationHub class
    • New bottomNavBuilder method to build the bottom navigation bar
  • DateTime extension:
    • Allow toDateString to accept a String format
    • Add toDateStringUK to format the date in UK format
    • Add toDateStringUS to format the date in US format
  • New localAsset method added to AssetImage
  • Update pubspec.yaml

v6.4.9

16 Jan 04:50
Compare
Choose a tag to compare
  • pubspec.yaml update

v6.4.8

13 Jan 06:46
Compare
Choose a tag to compare
  • Fix model stub
  • Make updatePageState public
  • Ensure handleSuccess handles responses within the correct status code range. Fixes 207
  • Fix header parameter in NyPullToRefresh and NyListView
  • Small fix for NyForm
  • Improvements to NavigationHub to support Text tabs and Icons
  • Updates to NavigationTab to support updating the Page, Title, Icon, Background Color and Tooltip