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.