Created
October 11, 2019 11:49
-
-
Save av/c21b63f571d22512a597bbdff8c4e64e to your computer and use it in GitHub Desktop.
Flutter: tough_bikes, button container styling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// 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