Skip to content

Instantly share code, notes, and snippets.

@rodolfofranco
Created May 24, 2020 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodolfofranco/1f79e458e8d23318ad5f7a42a6793170 to your computer and use it in GitHub Desktop.
Save rodolfofranco/1f79e458e8d23318ad5f7a42a6793170 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: ListView(
// Here we will populate the list with data we receive from the HTTP call.
)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment