Commit c48f5f6d authored by Michael Thomsen's avatar Michael Thomsen Committed by GitHub

Remove title code as no title is shown (#9213)

parent d2abdf8e
......@@ -15,16 +15,12 @@ class FlutterView extends StatelessWidget {
theme: new ThemeData(
primarySwatch: Colors.grey,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
home: new MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment