2020-03-20 16:17:02 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class HomePage extends StatefulWidget {
|
2020-04-10 20:12:26 +02:00
|
|
|
const HomePage({Key key}) : super(key: key);
|
2020-03-20 16:17:02 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
_HomePageState createState() => _HomePageState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _HomePageState extends State<HomePage> {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-04-10 20:12:26 +02:00
|
|
|
print('HomePage.build');
|
2020-03-20 16:17:02 +01:00
|
|
|
return Container(
|
2020-04-10 20:12:26 +02:00
|
|
|
child: const Center(
|
|
|
|
child: Text('Home Page'),
|
|
|
|
),
|
2020-03-20 16:17:02 +01:00
|
|
|
);
|
|
|
|
}
|
2020-04-10 20:12:26 +02:00
|
|
|
}
|