|
@@ -11,14 +11,14 @@ class IndexPage extends StatefulWidget {
|
|
}
|
|
}
|
|
|
|
|
|
class _IndexPageState extends State<IndexPage> {
|
|
class _IndexPageState extends State<IndexPage> {
|
|
- List<String> _list = <String>[];
|
|
|
|
|
|
+ final List<String> _list = <String>[];
|
|
|
|
|
|
@override
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
return Scaffold(
|
|
- body: Placeholder(),
|
|
|
|
|
|
+ body: const Placeholder(),
|
|
appBar: AppBar(
|
|
appBar: AppBar(
|
|
- title: Text('Index Page'),
|
|
|
|
|
|
+ title: const Text('Index Page'),
|
|
),
|
|
),
|
|
floatingActionButton: FloatingActionButton(
|
|
floatingActionButton: FloatingActionButton(
|
|
onPressed: () {
|
|
onPressed: () {
|