mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-05-25 01:07:55 +08:00
Update main.dart
Dart Analysis Tab : error: Undefined name 'JSON'. (undefined_identifier at [flutter_app] lib/second.dart:34)
This commit is contained in:
@ -31,7 +31,7 @@ class MyAppState extends State<MyApp> {
|
||||
.loadString('data_repo/starwars_data.json'),
|
||||
builder: (context, snapshot) {
|
||||
// Decode the JSON
|
||||
var new_data = JSON.decode(snapshot.data.toString());
|
||||
var new_data = json.decode(snapshot.data.toString());
|
||||
|
||||
return new ListView.builder(
|
||||
// Build the ListView
|
||||
|
Reference in New Issue
Block a user