Removed the flutter example code

This commit is contained in:
Mariano Uvalle 2019-02-20 21:39:23 -06:00
parent ecb6190023
commit fbd8ce6efe
9 changed files with 163 additions and 109 deletions

10
lib/src/App.dart Normal file
View file

@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class App extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
title: 'Do more',
home: Text('Start'),
);
}
}