Initial commit
This commit is contained in:
25
lib/main.dart
Normal file
25
lib/main.dart
Normal file
@@ -0,0 +1,25 @@
|
||||
import 'package:esms_project/mainScreen.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
void main() {
|
||||
runApp(ESMSApp());
|
||||
}
|
||||
|
||||
class ESMSApp extends StatelessWidget {
|
||||
/* TODO: Consertos realizados em outros aparelhos parecidos? -- 01/06/2021, adicionado tabela
|
||||
TODO: Fazer telas relacionadas a tabela
|
||||
Vai pegar o nome do aparelho quando colocar data de entrega se o usuário quiser
|
||||
Pode deletar ou alterar informações de reparo*/
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
title: 'ESMS - Sistema para Técnicos em Eletrônica',
|
||||
debugShowCheckedModeBanner: false,
|
||||
theme: ThemeData(
|
||||
primarySwatch: Colors.red,
|
||||
),
|
||||
home: mainScreen(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user