Skip to content

Instantly share code, notes, and snippets.

@hsSam
Last active June 25, 2019 03:32
Show Gist options
  • Save hsSam/aa47c4b9338082a16bf7025970d2dbac to your computer and use it in GitHub Desktop.
Save hsSam/aa47c4b9338082a16bf7025970d2dbac to your computer and use it in GitHub Desktop.
[flutter css style] flutter css sytle use #flutter
// Color
Color _color = Colors.green;
_color = Color.fromRGBO(random.nextInt(256), random.nextInt(256), random.nextInt(256), 1,);
//border Radius
BorderRadiusGeometry _borderRadius = BorderRadius.circular(8);
decoration: BoxDecoration(
color: _color,
borderRadius: _borderRadius,
),
//Icon
Icon(Icons.play_arrow)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment