Skip to content

Instantly share code, notes, and snippets.

@slamdon
Last active February 15, 2020 06:33
Show Gist options
  • Save slamdon/5d8427ea38d1bdc6e38641fb3009a3d2 to your computer and use it in GitHub Desktop.
Save slamdon/5d8427ea38d1bdc6e38641fb3009a3d2 to your computer and use it in GitHub Desktop.
PageView
@override
Widget build(BuildContext context) {
return Center(
child: SizedBox.fromSize(
size: Size.fromHeight(550),
child: PageView.builder(
itemCount: trips.length,
itemBuilder: (context, index){
return TripPageItem(trip: trips[index]);
},
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment