Skip to content

Instantly share code, notes, and snippets.

@JonathanMonga
Created January 29, 2020 21:13
Show Gist options
  • Save JonathanMonga/4e3f901a4ca3b56b1dc47c068c62625e to your computer and use it in GitHub Desktop.
Save JonathanMonga/4e3f901a4ca3b56b1dc47c068c62625e to your computer and use it in GitHub Desktop.
final rowConstant = Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Text(
"Period",
style: TextStyle(
fontWeight: FontWeight.bold,
color: Theme.of(context).textTheme.caption.color,
),
),
SizedBox(
width: 30,
),
Text(
"Last 30 days",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 16,
),
),
],
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment