Skip to content

Commit

Permalink
v5.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
agordn52 committed Oct 27, 2023
1 parent a4cf654 commit 21ecb9f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## [5.7.1] - 2023-10-27

* Update page stub to include an example on how to set the state.

## [5.7.0] - 2023-10-22

* Ability to auto add themes to the Nylo config using e.g. `metro make:theme bright_theme`
Expand Down
3 changes: 2 additions & 1 deletion lib/metro/stubs/page_stub.dart
Expand Up @@ -11,7 +11,8 @@ class ${pageName.pascalCase}Page extends NyPage {
@override
init() async {
// To update the state,
// use: refreshPage(setState: () { });
}
@override
Expand Down
3 changes: 2 additions & 1 deletion lib/metro/stubs/page_w_controller_stub.dart
Expand Up @@ -12,7 +12,8 @@ class ${className.pascalCase}Page extends NyPage<${className.pascalCase}Controll
@override
init() async {
// To update the state,
// use: refreshPage(setState: () { });
}
@override
Expand Down
2 changes: 1 addition & 1 deletion lib/nylo_framework.dart
Expand Up @@ -38,4 +38,4 @@ export 'package:nylo_support/widgets/ny_page.dart';
export 'package:dio/dio.dart';

/// Nylo version
const String nyloVersion = 'v5.7.0';
const String nyloVersion = 'v5.7.1';
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,6 +1,6 @@
name: nylo_framework
description: Micro-framework for Flutter that's built to simplify app development for Flutter projects.
version: 5.7.0
version: 5.7.1
homepage: https://nylo.dev
repository: https://github.com/nylo-core/framework/tree/5.x
issue_tracker: https://github.com/nylo-core/framework/issues
Expand Down

0 comments on commit 21ecb9f

Please sign in to comment.