Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import 'package:flutter/material.dart';
- class MeuTexto extends StatelessWidget {
- const MeuTexto({super.key});
- @override
- Widget build(BuildContext context) {
- return const Text(
- 'Hello, World!',
- style: TextStyle(
- fontSize: 24,
- fontWeight: FontWeight.bold,
- color: Colors.red,
- ),
- );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement