Skip to content

Releases: nylo-core/nylo

v6.0.1

02 Nov 10:50
Compare
Choose a tag to compare
  • add scaffold_ui

v6.0.0

02 Nov 09:40
Compare
Choose a tag to compare
  • New version of Nylo - read more about the changes here

v5.31.8

04 Sep 19:14
Compare
Choose a tag to compare
  • Update pubspec.yaml

v5.31.7

12 Aug 20:42
Compare
Choose a tag to compare
  • Update pubspec.yaml

v5.31.6

20 Jul 00:29
Compare
Choose a tag to compare
  • update api_service and form_style.dart

v5.31.5

18 Jul 12:03
Compare
Choose a tag to compare
  • New docs on nylo.dev for Forms - read more here
  • New create method added to NyFormData class. This will allow you to create the form from the instance.
  • Add FormStyle to NyForm. This will allow you to set a global style for the form. It currently only supports TextField and NyFormCheckbox widgets.
  • Ability to create custom validation rules in NyForm's and NyTextField's
  • Added refreshState to NyForm class. This will refresh the state of the form.
  • Added new typedefs FormStyleTextField and FormStyleCheckbox for handling custom styles in NyForm
  • Added clear method to NyForm class. This will clear the form.
  • Added clearField method to NyForm class. This will clear a specific field in the form.
  • Update setField and setData methods in NyForm class. This will now update the state of the form after setting the field.
  • Refactor NyTextField class
  • Refactor NyFormCheckbox class to support global styles
  • FormStyle var added to Nylo class
  • Small refactor to cli_dialog to pass static analysis
  • Update pubspec.yaml

v5.31.4

10 Jul 20:49
Compare
Choose a tag to compare
  • pubspec.yaml updates

v5.31.3

08 Jul 03:00
Compare
Choose a tag to compare
  • Refactor FormValidator class.
    • To set a validation rule, you must now use FormValidator.rule("email") instead of FormValidator("email")
    • You can now join multiple validation rules. E.g. FormValidator().minLength(5).uppercase() will check if the value is at least 5 characters long and is uppercase.
  • Fix autofocus on Field's in NyForm
  • Small refactor to toast widget

v5.31.2

06 Jul 22:08
Compare
Choose a tag to compare
  • Add new Forms
    • NyFormCheckbox - This will create a checkbox form field
    • NyFormDateTimePicker - This will create a date time picker form field
  • Refactor NyFormData class
  • Update the Form stub
  • Add new dependency date_field
  • Update README
  • Fix slight issue with NyForm when handling validation rules
  • Update validate helper in NyState

v5.31.1

05 Jul 21:19
Compare
Choose a tag to compare
  • Fix deleteAll() method in Backpack to not remove the nylo key
  • Small tweak to the default toast_notification_widget.dart style