Advertisement
thomazrb

meu_texto.dart

May 20th, 2025
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.35 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. class MeuTexto extends StatelessWidget {  
  4.   const MeuTexto({super.key});
  5.  
  6.   @override
  7.   Widget build(BuildContext context) {
  8.     return const Text(
  9.       'Hello, World!',
  10.       style: TextStyle(
  11.         fontSize: 24,
  12.         fontWeight: FontWeight.bold,
  13.         color: Colors.red,
  14.       ),
  15.     );
  16.   }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement