Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 18, 2018 21:41
Show Gist options
  • Save Rahiche/82aeb05c5200139c17d03a052bedab9a to your computer and use it in GitHub Desktop.
Save Rahiche/82aeb05c5200139c17d03a052bedab9a to your computer and use it in GitHub Desktop.
return Scaffold(
appBar: PreferredSize(
child: Container(color: Colors.red),
preferredSize: Size.fromHeight(50.0)),
bottomNavigationBar: Container(height: 50.0, color: Colors.red),
floatingActionButton: Container(
width: 50.0,
height: 50.0,
child: Center(
child: FittedBox(
child: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.arrow_upward),
),
),
),
),
body: ListView(
children: List.generate(
200,
(index) => ListTile(
title: Text(index.toString()),
)),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment