Skip to content

Instantly share code, notes, and snippets.

View c-gayan's full-sized avatar
🎧
yep!

c-gayan

🎧
yep!
View GitHub Profile
@prappo
prappo / main.dart
Created December 31, 2019 18:47
Flutter - Building Lists with JSON Data
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) {