Skip to content

Instantly share code, notes, and snippets.

@TheOnlyArtz
Created August 24, 2019 08:57
Show Gist options
  • Save TheOnlyArtz/287371d4868b76deaea5e8e82909061c to your computer and use it in GitHub Desktop.
Save TheOnlyArtz/287371d4868b76deaea5e8e82909061c to your computer and use it in GitHub Desktop.
Widget _buildFlowerCardList() {
return Row(
children: <Widget>[
Expanded(
flex: 42,
child: ListView(
children: <Widget>[
Padding(
padding: EdgeInsets.only(right: 30),
child: _buildFlowerCard("Alaskan", "Thunderfuck Strain", 300, 0xff4A878E, 0xff4F848F, 0xff6BA396),
)
],),
)
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment