Skip to content

Commit 9d7b7dd

Browse files
committed
v6.12.6
1 parent 46510ab commit 9d7b7dd

File tree

15 files changed

+84
-54
lines changed

15 files changed

+84
-54
lines changed

LabelStoreMax/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# *<! ------ App ------!>*
22

33
APP_NAME="MyApp"
4-
APP_ENV="local"
4+
APP_ENV="developing"
55
APP_DEBUG="true"
66
APP_URL="https://mywoocommercestore.com"
77
API_BASE_URL="https://mywoocommercestore.com"

LabelStoreMax/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [6.12.6] - 2024-01-28
2+
3+
* Update default themes
4+
* Pubspec.yaml dependency updates
5+
16
## [6.12.5] - 2023-12-28
27

38
* Pubspec.yaml dependency updates

LabelStoreMax/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>11.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

LabelStoreMax/lib/app/networking/api_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'package:nylo_framework/nylo_framework.dart';
77
| ApiService
88
| -------------------------------------------------------------------------
99
| Define your API endpoints
10-
| Learn more https://nylo.dev/docs/5.x/networking
10+
| Learn more https://nylo.dev/docs/5.20.0/networking
1111
|--------------------------------------------------------------------------
1212
*/
1313

LabelStoreMax/lib/config/decoders.dart

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@ import 'package:flutter_app/app/controllers/product_image_viewer_controller.dart
77
import 'package:flutter_app/app/controllers/product_reviews_controller.dart';
88
import 'package:flutter_app/app/models/user.dart';
99
import 'package:flutter_app/app/networking/api_service.dart';
10-
import 'package:nylo_framework/nylo_framework.dart';
1110

1211
/*
1312
|--------------------------------------------------------------------------
1413
| Model Decoders
1514
| -------------------------------------------------------------------------
1615
| Model decoders are used in 'app/networking/' for morphing json payloads
17-
| into Models. Learn more https://nylo.dev/docs/5.x/decoders#model-decoders
16+
| into Models. Learn more https://nylo.dev/docs/5.20.0/decoders#model-decoders
1817
|--------------------------------------------------------------------------
1918
*/
2019

@@ -29,12 +28,12 @@ final Map<Type, dynamic> modelDecoders = {
2928
| -------------------------------------------------------------------------
3029
| API decoders are used when you need to access an API service using the
3130
| 'api' helper. E.g. api<MyApiService>((request) => request.fetchData());
32-
| Learn more https://nylo.dev/docs/5.x/decoders#api-decoders
31+
| Learn more https://nylo.dev/docs/5.20.0/decoders#api-decoders
3332
|--------------------------------------------------------------------------
3433
*/
3534

36-
final Map<Type, NyApiService> apiDecoders = {
37-
ApiService: ApiService(),
35+
final Map<Type, dynamic> apiDecoders = {
36+
ApiService: () => ApiService(),
3837

3938
// ...
4039
};
@@ -46,10 +45,10 @@ final Map<Type, NyApiService> apiDecoders = {
4645
| Controller are used in pages.
4746
| E.g. NyPage<MyController>
4847
|
49-
| Learn more https://nylo.dev/docs/5.x/controllers#using-controllers-with-ny-page
48+
| Learn more https://nylo.dev/docs/5.20.0/controllers#using-controllers-with-ny-page
5049
|--------------------------------------------------------------------------
5150
*/
52-
final Map<Type, BaseController Function()> controllers = {
51+
final Map<Type, dynamic> controllers = {
5352
ProductDetailController: () => ProductDetailController(),
5453
AccountOrderDetailController: () => AccountOrderDetailController(),
5554
BrowseCategoryController: () => BrowseCategoryController(),

LabelStoreMax/lib/config/design.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'package:nylo_framework/nylo_framework.dart';
1010
| Design
1111
| Contains widgets used in the Nylo framework.
1212
|
13-
| Learn more: https://nylo.dev/docs/5.x/themes
13+
| Learn more: https://nylo.dev/docs/5.20.0/themes
1414
|--------------------------------------------------------------------------
1515
*/
1616

LabelStoreMax/lib/config/events.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import 'package:nylo_framework/nylo_framework.dart';
88
| Add your "app/events" here.
99
| Events can be fired using: event<MyEvent>();
1010
|
11-
| Learn more: https://nylo.dev/docs/5.x/events
11+
| Learn more: https://nylo.dev/docs/5.20.0/events
1212
|--------------------------------------------------------------------------
1313
*/
1414

LabelStoreMax/lib/config/providers.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'package:nylo_framework/nylo_framework.dart';
1010
| Add your "app/providers" here.
1111
| Providers are booted when your application start.
1212
|
13-
| Learn more: https://nylo.dev/docs/5.x/providers
13+
| Learn more: https://nylo.dev/docs/5.20.0/providers
1414
|--------------------------------------------------------------------------
1515
*/
1616

LabelStoreMax/lib/config/storage_keys.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
| E.g. static String userCoins = "USER_COINS";
66
| String coins = NyStorage.read( StorageKey.userCoins );
77
|
8-
| Learn more: https://nylo.dev/docs/5.x/storage#storage-keys
8+
| Learn more: https://nylo.dev/docs/5.20.0/storage#storage-keys
99
|--------------------------------------------------------------------------
1010
*/
1111

LabelStoreMax/lib/config/theme.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import '/resources/themes/styles/light_theme_colors.dart';
1212
| Run the below in the terminal to add a new theme.
1313
| "dart run nylo_framework:main make:theme bright_theme"
1414
|
15-
| Learn more: https://nylo.dev/docs/5.x/themes-and-styling
15+
| Learn more: https://nylo.dev/docs/5.20.0/themes-and-styling
1616
|--------------------------------------------------------------------------
1717
*/
1818

0 commit comments

Comments
 (0)