Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created February 10, 2019 21:24
Show Gist options
  • Save Rahiche/053b94770562db620304bdd49026f6b4 to your computer and use it in GitHub Desktop.
Save Rahiche/053b94770562db620304bdd49026f6b4 to your computer and use it in GitHub Desktop.
Widget buildItem(int i) {
return Container(
width: MediaQuery.of(context).size.width,
height: 100,
decoration: BoxDecoration(
color: Colors.deepOrangeAccent,
border: Border.all(color: Colors.black, width: 1),
boxShadow: [BoxShadow(blurRadius: 2)],
),
child: FittedBox(
child: Center(
child: Text('$i'),
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment