Created
August 8, 2021 01:55
-
-
Save tiagolpadua/d07e2dbedddf4cc48cdd47032f7bc39c to your computer and use it in GitHub Desktop.
Conteúdo Inicial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(Faturas()); | |
} | |
class Faturas extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Sistema de Faturas', | |
home: Scaffold( | |
appBar: AppBar( | |
title: const Text('Sistema de Faturas'), | |
), | |
body: const Center( | |
child: Text('Olá Mundo!'), | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment