Skip to content

Instantly share code, notes, and snippets.

@av
Created October 11, 2019 11:49
Show Gist options
  • Save av/c21b63f571d22512a597bbdff8c4e64e to your computer and use it in GitHub Desktop.
Save av/c21b63f571d22512a597bbdff8c4e64e to your computer and use it in GitHub Desktop.
Flutter: tough_bikes, button container styling
/// In BikeList.build > Column.children
Container(
decoration: BoxDecoration(
boxShadow: const [
BoxShadow(spreadRadius: 0.0, blurRadius: 20.0),
],
color: Colors.grey.shade800,
),
child: Row(
children: <Widget>[
Expanded(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: BikeButton(),
),
)
],
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment