This repository was archived by the owner on Nov 28, 2024. It is now read-only.
File tree 9 files changed +17
-17
lines changed
9 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 1
1
import 'dart:convert' ;
2
2
3
- import 'package:data_explorer/data_explorer.dart' ;
4
3
import 'package:flutter/material.dart' ;
5
4
import 'package:google_fonts/google_fonts.dart' ;
6
5
import 'package:http/http.dart' as http;
6
+ import 'package:json_data_explorer/json_data_explorer.dart' ;
7
7
import 'package:provider/provider.dart' ;
8
8
import 'package:scrollable_positioned_list/scrollable_positioned_list.dart' ;
9
9
Original file line number Diff line number Diff line change @@ -50,13 +50,6 @@ packages:
50
50
url: "https://pub.dartlang.org"
51
51
source: hosted
52
52
version: "3.0.1"
53
- data_explorer:
54
- dependency: "direct main"
55
- description:
56
- path: ".."
57
- relative: true
58
- source: path
59
- version: "0.0.1"
60
53
fake_async:
61
54
dependency: transitive
62
55
description:
@@ -128,6 +121,13 @@ packages:
128
121
url: "https://pub.dartlang.org"
129
122
source: hosted
130
123
version: "0.6.4"
124
+ json_data_explorer:
125
+ dependency: "direct main"
126
+ description:
127
+ path: ".."
128
+ relative: true
129
+ source: path
130
+ version: "0.0.1"
131
131
lints:
132
132
dependency: transitive
133
133
description:
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ environment:
9
9
dependencies :
10
10
flutter :
11
11
sdk : flutter
12
- data_explorer :
12
+ json_data_explorer :
13
13
path : ../
14
14
15
15
http : ^0.13.4
File renamed without changes.
Original file line number Diff line number Diff line change 1
- import 'package:data_explorer/src/data_explorer_theme.dart' ;
2
1
import 'package:flutter/material.dart' ;
3
2
import 'package:provider/provider.dart' ;
4
3
import 'package:scrollable_positioned_list/scrollable_positioned_list.dart' ;
5
4
import 'package:url_launcher/url_launcher.dart' ;
6
5
7
6
import 'data_explorer_store.dart' ;
7
+ import 'data_explorer_theme.dart' ;
8
8
9
9
/// Signature for a function that creates a widget based on a
10
10
/// [NodeViewModelState] state.
Original file line number Diff line number Diff line change 1
- name : data_explorer
2
- description : A new Flutter project .
1
+ name : json_data_explorer
2
+ description : A Flutter package to display json objects .
3
3
version : 0.0.1
4
- repository : https://github.com/rows/data-explorer
5
- homepage : https://github.com/rows/data-explorer
4
+ repository : https://github.com/rows/json- data-explorer
5
+ homepage : https://github.com/rows/json- data-explorer
6
6
7
7
environment :
8
8
sdk : " >=2.17.0-69.2.beta <3.0.0"
Original file line number Diff line number Diff line change 1
1
import 'dart:convert' ;
2
2
3
- import 'package:data_explorer/data_explorer.dart' ;
4
3
import 'package:flutter_test/flutter_test.dart' ;
4
+ import 'package:json_data_explorer/json_data_explorer.dart' ;
5
5
import 'package:mocktail/mocktail.dart' ;
6
6
7
7
class MockCallbackFunction extends Mock {
Original file line number Diff line number Diff line change 1
1
import 'dart:convert' ;
2
2
3
- import 'package:data_explorer/data_explorer.dart' ;
4
3
import 'package:flutter_test/flutter_test.dart' ;
4
+ import 'package:json_data_explorer/json_data_explorer.dart' ;
5
5
6
6
void main () {
7
7
List <NodeViewModelState > _buildList (String jsonString) {
Original file line number Diff line number Diff line change 1
- import 'package:data_explorer/data_explorer.dart' ;
2
1
import 'package:flutter_test/flutter_test.dart' ;
2
+ import 'package:json_data_explorer/json_data_explorer.dart' ;
3
3
import 'package:mocktail/mocktail.dart' ;
4
4
5
5
class MockCallbackFunction extends Mock {
You can’t perform that action at this time.
0 commit comments