Skip to content

Instantly share code, notes, and snippets.

@jimit24365
Created February 16, 2020 06:14
Show Gist options
  • Save jimit24365/0695d46e071981f42fc6c760cd85f087 to your computer and use it in GitHub Desktop.
Save jimit24365/0695d46e071981f42fc6c760cd85f087 to your computer and use it in GitHub Desktop.
FiniteListView
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark().copyWith(scaffoldBackgroundColor: darkBlue),
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Center(
child: MyWidget(),
),
),
);
}
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ListView(
padding: const EdgeInsets.all(8),
children: <Widget>[
Container(
height: 50,
color: Colors.amber[600],
child: const Center(child: Text('Entry A')),
),
Container(
height: 50,
color: Colors.amber[500],
child: const Center(child: Text('Entry B')),
),
Container(
height: 50,
color: Colors.amber[100],
child: const Center(child: Text('Entry C')),
),
],
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment