novo projeto

This commit is contained in:
Reginaldo
2023-05-24 18:43:37 -03:00
parent aa5c2a9423
commit ddacba5525
135 changed files with 4759 additions and 0 deletions

20
lib/main.dart Normal file
View File

@@ -0,0 +1,20 @@
import 'package:educa_controle_acesso/screens/home_screen.dart';
import 'package:educa_controle_acesso/screens/login_screen.dart';
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(
debugShowCheckedModeBanner: false,
title: 'Controle de Acesso',
home: HomeScreen(),
);
}
}