Project inicialization and base configuration

This commit is contained in:
Juan Gilsanz Polo 2022-09-26 13:51:18 +02:00
commit 2d3a0f3244
76 changed files with 2386 additions and 0 deletions

10
lib/screens/home.dart Normal file
View file

@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class Home extends StatelessWidget {
const Home({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container();
}
}