Skip to content

Instantly share code, notes, and snippets.

@rodolfofranco
Created May 23, 2020 23:40
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/86c0ffb848d7ac171ca51fc4e4ee6ea5 to your computer and use it in GitHub Desktop.
Save rodolfofranco/86c0ffb848d7ac171ca51fc4e4ee6ea5 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: Container(
height: MediaQuery.of(context).size.height,
child: ListView(
)
)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment