Created
December 25, 2022 21:03
-
-
Save josue1dario2/ece5ef8d4f2b355069e0f52d4f25ea71 to your computer and use it in GitHub Desktop.
5 - StatisticsText
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
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