Created
December 31, 2019 18:47
-
-
Save prappo/782b55a93756a6ea6195fc429d2c05fb to your computer and use it in GitHub Desktop.
Flutter - Building Lists with JSON Data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'dart:async'; | |
import 'package:http/http.dart' as http; | |
import 'dart:convert'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
// This widget is the root of your application. | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Flutter Demo', | |
theme: ThemeData( | |
primarySwatch: Colors.blue, | |
), | |
home: MyHomePage(title: 'Flutter Demo Home Page'), | |
); | |
} | |
} | |
class MyHomePage extends StatefulWidget { | |
MyHomePage({Key key, this.title}) : super(key: key); | |
final String title; | |
@override | |
_MyHomePageState createState() => _MyHomePageState(); | |
} | |
class _MyHomePageState extends State<MyHomePage> { | |
Future<List<User>> _getUusers() async{ | |
var data = await http.get("https://jsonplaceholder.typicode.com/users"); | |
var jsonData = json.decode(data.body); | |
List<User> users =[]; | |
for(var u in jsonData){ | |
User user = User(u["id"], u["name"], u["username"], u["email"]); | |
users.add(user); | |
} | |
print(users.length); | |
return users; | |
} | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text(widget.title), | |
), | |
body: Container( | |
child: FutureBuilder( | |
future: _getUusers(), | |
builder: (BuildContext context, AsyncSnapshot snapshot){ | |
if(snapshot.data == null){ | |
return Container( | |
child: Center( | |
child: Text('Loading'), | |
), | |
); | |
}else{ | |
return ListView.builder( | |
itemCount: snapshot.data.length, | |
itemBuilder: (BuildContext context, int index){ | |
return ListTile( | |
title: Text(snapshot.data[index].name), | |
subtitle: Text(snapshot.data[index].email), | |
onTap: (){ | |
Navigator.push(context, MaterialPageRoute(builder: (context)=> DetailPage(snapshot.data[index]))); | |
}, | |
); | |
} | |
); | |
} | |
}, | |
), | |
), | |
); | |
} | |
} | |
class DetailPage extends StatelessWidget { | |
final User user; | |
DetailPage(this.user); | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text(user.name), | |
), | |
body: Container( | |
child: Text(user.email), | |
), | |
); | |
} | |
} | |
class User{ | |
final int id; | |
final String name; | |
final String username; | |
final String email; | |
User(this.id,this.name,this.username,this.email); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks