From 981e61788e4f9a3eb18d470a02ac2b32cee7103b Mon Sep 17 00:00:00 2001 From: namdi Date: Mon, 3 Sep 2018 14:33:43 +0100 Subject: [PATCH] edit to main file --- lib/main.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index 17a4072..148598c 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -6,13 +6,11 @@ void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { - //final wordPair = WordPair.random(); // Delete this line - + return MaterialApp( title: 'Welcome to Flutter', home: Scaffold( body: Center( - //child: Text(wordPair.asPascalCase), // Change the highlighted text to... child: RandomWords(), // ... this highlighted text ), ),