Skip to content

Commit 20221f2

Browse files
committed
Update package
1 parent 6a68369 commit 20221f2

9 files changed

Lines changed: 12 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.0
2+
3+
* Add map constructor to build widget from json objects withuot serialization
4+
15
## 0.1.2
26

37
* Fix naming seporator -> separator

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
```yaml
1919
dependencies:
20-
flutter_json_view: ^0.1.2
20+
flutter_json_view: ^0.2.0
2121
```
2222
2323
### Add import package

example/lib/examples/github_user.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class JsonViewApp extends StatelessWidget {
1515
brightness: Brightness.dark,
1616
),
1717
home: Scaffold(
18-
appBar: AppBar(title: Text('flutter_json_view 0.1.2')),
18+
appBar: AppBar(title: Text('flutter_json_view 0.2.0')),
1919
body: Padding(
2020
padding: const EdgeInsets.all(10),
2121
child: JsonView.asset('assets/github_user.json'),

example/lib/examples/green_custom.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class JsonViewApp extends StatelessWidget {
1616
),
1717
debugShowCheckedModeBanner: false,
1818
home: Scaffold(
19-
appBar: AppBar(title: Text('flutter_json_view 0.1.2')),
19+
appBar: AppBar(title: Text('flutter_json_view 0.2.0')),
2020
body: Padding(
2121
padding: const EdgeInsets.all(10),
2222
child: JsonView.string(

example/lib/examples/map_сonstructor.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class JsonViewApp extends StatelessWidget {
1515
),
1616
debugShowCheckedModeBanner: false,
1717
home: Scaffold(
18-
appBar: AppBar(title: Text('flutter_json_view 0.1.2')),
18+
appBar: AppBar(title: Text('flutter_json_view 0.2.0')),
1919
body: Padding(
2020
padding: const EdgeInsets.all(10),
2121
child: JsonView.map(

example/lib/examples/pink.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class JsonViewApp extends StatelessWidget {
1414
primarySwatch: Colors.pink,
1515
),
1616
home: Scaffold(
17-
appBar: AppBar(title: Text('flutter_json_view 0.1.2')),
17+
appBar: AppBar(title: Text('flutter_json_view 0.2.0')),
1818
body: Padding(
1919
padding: const EdgeInsets.all(10),
2020
child: JsonView.string(

example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class JsonViewApp extends StatelessWidget {
1515
),
1616
debugShowCheckedModeBanner: false,
1717
home: Scaffold(
18-
appBar: AppBar(title: Text('flutter_json_view 0.1.2')),
18+
appBar: AppBar(title: Text('flutter_json_view 0.2.0')),
1919
body: Padding(
2020
padding: const EdgeInsets.all(10),
2121
child: JsonView.string(

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ packages:
6868
path: ".."
6969
relative: true
7070
source: path
71-
version: "0.1.2"
71+
version: "0.2.0"
7272
flutter_test:
7373
dependency: "direct dev"
7474
description: flutter

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_json_view
22
description: Displaying json models in a Flutter widget with customization.
3-
version: 0.1.2
3+
version: 0.2.0
44
author: 'youngfrezyx@gmail.com'
55
homepage: https://github.com/Frezyx/flutter_json_view
66

0 commit comments

Comments
 (0)