Skip to content

Commit

Permalink
v5.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
agordn52 committed Mar 21, 2024
1 parent f2470b7 commit 0b537d4
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
## [5.23.0] - 2024-03-21

* Update stubs
* Update pubspec.yaml

## [5.22.2] - 2024-03-18

* Update pubspec.yaml
Expand Down
10 changes: 5 additions & 5 deletions example/pubspec.lock
Expand Up @@ -291,15 +291,15 @@ packages:
path: ".."
relative: true
source: path
version: "5.22.2"
version: "5.23.0"
nylo_support:
dependency: transitive
description:
name: nylo_support
sha256: "2927b62a1dfbed8e85847e9460d0b8bcca3ec61b4d72318f3835dbbad6980fb0"
sha256: "0b933c275855582f4dcd36a87a3a2b7084a261104d3bb3035e787ed6e945ec77"
url: "https://pub.dev"
source: hosted
version: "5.56.1"
version: "5.57.0"
page_transition:
dependency: transitive
description:
Expand Down Expand Up @@ -472,10 +472,10 @@ packages:
dependency: transitive
description:
name: skeletonizer
sha256: "2eb80153c80507359ff05f6a18ed50ae0bafa1b999aa867a8cef0a53387b5650"
sha256: "9a3ae2f4ee4349bdbed3292d04586a1315a44745d2c454684f82f0c46dbeabf9"
url: "https://pub.dev"
source: hosted
version: "1.1.0"
version: "1.1.1"
sky_engine:
dependency: transitive
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion lib/metro/stubs/interceptor_stub.dart
Expand Up @@ -16,7 +16,7 @@ class ${interceptorName.pascalCase}Interceptor extends Interceptor {
}
@override
void onError(DioException dioException, ErrorInterceptorHandler handler) {
void onError(DioException err, ErrorInterceptorHandler handler) {
handler.next(dioException);
}
}
Expand Down
14 changes: 14 additions & 0 deletions lib/metro/stubs/theme_colors_stub.dart
Expand Up @@ -10,31 +10,45 @@ import '/resources/themes/styles/color_styles.dart';
class ${rc.pascalCase}ThemeColors implements ColorStyles {
// general
@override
Color get background => const Color(0xFFFFFFFF);
@override
Color get primaryContent => const Color(0xFF000000);
@override
Color get primaryAccent => const Color(0xFF87c694);
@override
Color get surfaceBackground => Colors.white;
@override
Color get surfaceContent => Colors.black;
// app bar
@override
Color get appBarBackground => Colors.blue;
@override
Color get appBarPrimaryContent => Colors.white;
// buttons
@override
Color get buttonBackground => Colors.blueAccent;
@override
Color get buttonPrimaryContent => Colors.white;
// bottom tab bar
@override
Color get bottomTabBarBackground => Colors.white;
// bottom tab bar - icons
@override
Color get bottomTabBarIconSelected => Colors.blue;
@override
Color get bottomTabBarIconUnselected => Colors.black54;
// bottom tab bar - label
@override
Color get bottomTabBarLabelUnselected => Colors.black45;
@override
Color get bottomTabBarLabelSelected => Colors.black;
}
''';
2 changes: 1 addition & 1 deletion lib/nylo_framework.dart
Expand Up @@ -45,4 +45,4 @@ export 'package:skeletonizer/skeletonizer.dart';
export 'package:dio/dio.dart';

/// Nylo version
const String nyloVersion = 'v5.22.2';
const String nyloVersion = 'v5.23.0';
8 changes: 4 additions & 4 deletions pubspec.lock
Expand Up @@ -289,10 +289,10 @@ packages:
dependency: "direct main"
description:
name: nylo_support
sha256: "2927b62a1dfbed8e85847e9460d0b8bcca3ec61b4d72318f3835dbbad6980fb0"
sha256: "0b933c275855582f4dcd36a87a3a2b7084a261104d3bb3035e787ed6e945ec77"
url: "https://pub.dev"
source: hosted
version: "5.56.1"
version: "5.57.0"
page_transition:
dependency: "direct main"
description:
Expand Down Expand Up @@ -465,10 +465,10 @@ packages:
dependency: "direct main"
description:
name: skeletonizer
sha256: "2eb80153c80507359ff05f6a18ed50ae0bafa1b999aa867a8cef0a53387b5650"
sha256: "9a3ae2f4ee4349bdbed3292d04586a1315a44745d2c454684f82f0c46dbeabf9"
url: "https://pub.dev"
source: hosted
version: "1.1.0"
version: "1.1.1"
sky_engine:
dependency: transitive
description: flutter
Expand Down
6 changes: 3 additions & 3 deletions 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.22.2
version: 5.23.0
homepage: https://nylo.dev
repository: https://github.com/nylo-core/framework/tree/5.x
issue_tracker: https://github.com/nylo-core/framework/issues
Expand All @@ -12,12 +12,12 @@ topics:
- framework

environment:
sdk: '>=2.15.0 <4.0.0'
sdk: '>=3.0.0 <4.0.0'
flutter: ">=1.17.0"

dependencies:
flutter_dotenv: ^5.1.0
nylo_support: ^5.56.1
nylo_support: ^5.57.0
theme_provider: ^0.6.0
page_transition: ^2.1.0
cli_dialog: ^0.5.0
Expand Down

0 comments on commit 0b537d4

Please sign in to comment.