simple_text 0.0.1
simple_text: ^0.0.1 copied to clipboard
Simple text widget for create your project easy and fast .
Expample #
class HelloWorldText extends StatelessWidget { final String text;
HelloWorldText({required this.text});
@override Widget build(BuildContext context) { return Text( text, style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold), ); } }