Init Application
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
void main() {
|
||||
runApp(MyApp());
|
||||
}
|
||||
|
||||
class MyApp extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
showSemanticsDebugger: false,
|
||||
title: 'Le Kiosque By GC&S',
|
||||
theme: ThemeData(
|
||||
primarySwatch: Colors.white,
|
||||
),
|
||||
home: Container(),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user