Skip to content

Instantly share code, notes, and snippets.

@josue1dario2
Created December 25, 2022 21:03
Show Gist options
  • Save josue1dario2/ece5ef8d4f2b355069e0f52d4f25ea71 to your computer and use it in GitHub Desktop.
Save josue1dario2/ece5ef8d4f2b355069e0f52d4f25ea71 to your computer and use it in GitHub Desktop.
5 - StatisticsText
class StatisticsText extends StatelessWidget {
const StatisticsText({super.key, required this.text});
final String text;
@override
Widget build(BuildContext context) {
return Center(
child: Text(
text,
style: CustomTextStyle.percentSubtitle,
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment