gerais
Não há notas disponíveis!
Olá Mundo em Flutter
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
title: "Ola Mundo!",
home: Home()));
}
class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Ola Mundo!"),
centerTitle: true,
backgroundColor: Colors.green,
),
backgroundColor: Colors.white,
body: Stack(
children: <Widget>[
Text(
"Olá Mundo!",
style:
TextStyle(color: Colors.green, fontWeight: FontWeight.bold),
),
],
)
);
}
}