|
|
|
@ -2,19 +2,6 @@ import 'package:flutter/material.dart'; |
|
|
|
|
import 'package:flutter_quill/flutter_quill.dart'; |
|
|
|
|
|
|
|
|
|
class HomePage extends StatefulWidget { |
|
|
|
|
HomePage({Key key, this.title}) : super(key: key); |
|
|
|
|
|
|
|
|
|
// This widget is the home page of your application. It is stateful, meaning |
|
|
|
|
// that it has a State object (defined below) that contains fields that affect |
|
|
|
|
// how it looks. |
|
|
|
|
|
|
|
|
|
// This class is the configuration for the state. It holds the values (in this |
|
|
|
|
// case the title) provided by the parent (in this case the App widget) and |
|
|
|
|
// used by the build method of the State. Fields in a Widget subclass are |
|
|
|
|
// always marked "final". |
|
|
|
|
|
|
|
|
|
final String title; |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
_HomePageState createState() => _HomePageState(); |
|
|
|
|
} |
|
|
|
@ -43,9 +30,7 @@ class _HomePageState extends State<HomePage> { |
|
|
|
|
// than having to individually change instances of widgets. |
|
|
|
|
return Scaffold( |
|
|
|
|
appBar: AppBar( |
|
|
|
|
// Here we take the value from the MyHomePage object that was created by |
|
|
|
|
// the App.build method, and use it to set our appbar title. |
|
|
|
|
title: Text(widget.title), |
|
|
|
|
title: Text("Demo Page"), |
|
|
|
|
), |
|
|
|
|
body: Center( |
|
|
|
|
// Center is a layout widget. It takes a single child and positions it |
|
|
|
@ -84,4 +69,4 @@ class _HomePageState extends State<HomePage> { |
|
|
|
|
), // This trailing comma makes auto-formatting nicer for build methods. |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|