Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Created September 10, 2019 15:53
Show Gist options
  • Save isacjunior/c5865c0649432ac7b119b845c71f7a39 to your computer and use it in GitHub Desktop.
Save isacjunior/c5865c0649432ac7b119b845c71f7a39 to your computer and use it in GitHub Desktop.
class CustomText extends StatelessWidget {
final String text;
CustomText({ @required this.text });
@override
Widget build(BuildContext context) {
return Center(
child: Text(text),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment