Skip to content

Instantly share code, notes, and snippets.

@JonathanMonga
Last active January 29, 2020 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JonathanMonga/db68b77aa551d7a7c4c038fe390a23f8 to your computer and use it in GitHub Desktop.
Save JonathanMonga/db68b77aa551d7a7c4c038fe390a23f8 to your computer and use it in GitHub Desktop.
Widget _buildRow(BuildContext context) {
return 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