File tree Expand file tree Collapse file tree 6 files changed +28
-20
lines changed
Expand file tree Collapse file tree 6 files changed +28
-20
lines changed Original file line number Diff line number Diff line change 1+ ## [ 2.1.1] - 2021-12-10
2+
3+ * Upgrade to Dart 2.15
4+ * Add toast notifications
5+ * Pubspec.yaml dependency updates
6+
17## [ 2.1.0] - 2021-12-08
28
39* Update Nylo version
Original file line number Diff line number Diff line change 66 <a href =" https://github.com/nylo-core/framework " ><img alt =" GitHub stars " src =" https://img.shields.io/github/stars/nylo-core/framework?style=plastic " ></a >
77</p >
88
9- ## Nylo Framework (v2.1.0 )
9+ ## Nylo Framework (v2.1.1 )
1010
1111Nylo is a micro-framework for Flutter which is designed to help simplify app development. Every project provides a simple boilerplate and MVC pattern to help you build apps easier.
1212
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ packages:
2828 name: async
2929 url: "https://pub.dartlang.org"
3030 source: hosted
31- version: "2.8.1 "
31+ version: "2.8.2 "
3232 boolean_selector:
3333 dependency: transitive
3434 description:
@@ -42,7 +42,7 @@ packages:
4242 name: characters
4343 url: "https://pub.dartlang.org"
4444 source: hosted
45- version: "1.1 .0"
45+ version: "1.2 .0"
4646 charcode:
4747 dependency: transitive
4848 description:
@@ -209,7 +209,7 @@ packages:
209209 name: matcher
210210 url: "https://pub.dartlang.org"
211211 source: hosted
212- version: "0.12.10 "
212+ version: "0.12.11 "
213213 meta:
214214 dependency: transitive
215215 description:
@@ -223,14 +223,14 @@ packages:
223223 path: ".."
224224 relative: true
225225 source: path
226- version: "2.1.0 "
226+ version: "2.1.1 "
227227 nylo_support:
228228 dependency: transitive
229229 description:
230230 name: nylo_support
231231 url: "https://pub.dartlang.org"
232232 source: hosted
233- version: "2.2.0 "
233+ version: "2.2.1 "
234234 page_transition:
235235 dependency: transitive
236236 description:
@@ -389,7 +389,7 @@ packages:
389389 name: test_api
390390 url: "https://pub.dartlang.org"
391391 source: hosted
392- version: "0.4.2 "
392+ version: "0.4.3 "
393393 theme_provider:
394394 dependency: transitive
395395 description:
@@ -417,7 +417,7 @@ packages:
417417 name: vector_math
418418 url: "https://pub.dartlang.org"
419419 source: hosted
420- version: "2.1.0 "
420+ version: "2.1.1 "
421421 win32:
422422 dependency: transitive
423423 description:
@@ -447,5 +447,5 @@ packages:
447447 source: hosted
448448 version: "3.1.0"
449449sdks:
450- dart: ">=2.14 .0 <3.0.0"
450+ dart: ">=2.15 .0 <3.0.0"
451451 flutter: ">=2.0.0"
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ export 'package:nylo_support/helpers/helper.dart';
77export 'package:nylo_support/controllers/controller.dart' ;
88export 'package:nylo_support/localization/app_localization.dart' ;
99export 'package:theme_provider/theme_provider.dart' ;
10+ export 'package:nylo_support/alerts/toast_enums.dart' ;
11+ export 'package:nylo_support/alerts/toast_notification.dart' ;
1012export 'package:nylo_support/nylo.dart' ;
1113
1214/// Nylo version
13- const String nyloVersion = 'v2.1.0 ' ;
15+ const String nyloVersion = 'v2.1.1 ' ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ packages:
2828 name: async
2929 url: "https://pub.dartlang.org"
3030 source: hosted
31- version: "2.8.1 "
31+ version: "2.8.2 "
3232 boolean_selector:
3333 dependency: transitive
3434 description:
@@ -42,7 +42,7 @@ packages:
4242 name: characters
4343 url: "https://pub.dartlang.org"
4444 source: hosted
45- version: "1.1 .0"
45+ version: "1.2 .0"
4646 charcode:
4747 dependency: transitive
4848 description:
@@ -209,7 +209,7 @@ packages:
209209 name: matcher
210210 url: "https://pub.dartlang.org"
211211 source: hosted
212- version: "0.12.10 "
212+ version: "0.12.11 "
213213 meta:
214214 dependency: transitive
215215 description:
@@ -223,7 +223,7 @@ packages:
223223 name: nylo_support
224224 url: "https://pub.dartlang.org"
225225 source: hosted
226- version: "2.2.0 "
226+ version: "2.2.1 "
227227 page_transition:
228228 dependency: transitive
229229 description:
@@ -382,7 +382,7 @@ packages:
382382 name: test_api
383383 url: "https://pub.dartlang.org"
384384 source: hosted
385- version: "0.4.2 "
385+ version: "0.4.3 "
386386 theme_provider:
387387 dependency: "direct main"
388388 description:
@@ -410,7 +410,7 @@ packages:
410410 name: vector_math
411411 url: "https://pub.dartlang.org"
412412 source: hosted
413- version: "2.1.0 "
413+ version: "2.1.1 "
414414 win32:
415415 dependency: transitive
416416 description:
@@ -440,5 +440,5 @@ packages:
440440 source: hosted
441441 version: "3.1.0"
442442sdks:
443- dart: ">=2.14 .0 <3.0.0"
443+ dart: ">=2.15 .0 <3.0.0"
444444 flutter: ">=2.0.0"
Original file line number Diff line number Diff line change 11name : nylo_framework
22description : Micro-framework for Flutter that's built to simplify app development for Flutter projects.
3- version : 2.1.0
3+ version : 2.1.1
44homepage : https://nylo.dev
55repository : https://github.com/nylo-core/framework
66issue_tracker : https://github.com/nylo-core/framework/issues
77documentation : https://github.com/nylo-core/framework
88
99environment :
10- sdk : ' >=2.14 .0 <3.0.0'
10+ sdk : ' >=2.15 .0 <3.0.0'
1111
1212dependencies :
1313 flutter_dotenv : ^5.0.2
14- nylo_support : ^2.2.0
14+ nylo_support : ^2.2.1
1515 flutter_launcher_icons : ^0.9.2
1616 args : ^2.3.0
1717 theme_provider : ^0.5.0
You can’t perform that action at this time.
0 commit comments