Skip to content

Commit

Permalink
Simplifying scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
domesticmouse committed Nov 26, 2018
1 parent fd39998 commit 849c75d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 30 deletions.
1 change: 1 addition & 0 deletions ios/Flutter/Generated.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ SYMROOT=${SOURCE_ROOT}/../build/ios
FLUTTER_FRAMEWORK_DIR=/Users/brettmorgan/flutter/bin/cache/artifacts/engine/ios
FLUTTER_BUILD_NAME=1.0.0
FLUTTER_BUILD_NUMBER=1
TRACK_WIDGET_CREATION=true
Binary file modified ios/Flutter/flutter_assets/kernel_blob.bin
Binary file not shown.
8 changes: 6 additions & 2 deletions lib/app.dart
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
import 'package:drawapp/home_page.dart';
import 'package:drawapp/draw_page.dart';
import 'package:flutter/material.dart';

class DrawApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'DrawApp',
home: HomePage(title: "DrawApp"),
home: Scaffold(
appBar: AppBar(
title: Text('DrawApp'),
),
body: DrawPage()),
);
}
}
28 changes: 0 additions & 28 deletions lib/home_page.dart

This file was deleted.

0 comments on commit 849c75d

Please sign in to comment.