Skip to content

Instantly share code, notes, and snippets.

@filiph
Created February 19, 2021 04:36
Show Gist options
  • Save filiph/c45e5637ff9e7306792c94a399d93da6 to your computer and use it in GitHub Desktop.
Save filiph/c45e5637ff9e7306792c94a399d93da6 to your computer and use it in GitHub Desktop.
Unbounded error app
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
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> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
children: <Widget>[
Text('A list of things:'),
Flexible(child: MyScrollingWidget()),
Text('The end'),
],
),
),
);
}
}
class MyScrollingWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ListView.builder(
itemBuilder: (context, index) {
return ListTile(title: Text('Item $index'));
},
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment