corrigir os botoes novos

This commit is contained in:
2026-02-26 10:41:12 +00:00
parent a371dfd589
commit 7aa85ac379
3 changed files with 142 additions and 66 deletions

View File

@@ -0,0 +1,27 @@
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Ícone de Basquete'),
),
body: const Center(
child: Icon(
Icons.sports_basketball,
size: 100.0, // Tamanho do ícone
color: Colors.black, // Cor do ícone (preto, como na imagem)
),
),
),
);
}
}