novo projeto
This commit is contained in:
20
lib/main.dart
Normal file
20
lib/main.dart
Normal 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(),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user