softplayer-web/lib/pages/home.dart

25 lines
531 B
Dart
Raw Normal View History

2024-03-26 16:17:04 +00:00
import 'package:flutter/material.dart';
class HomePage extends StatefulWidget {
const HomePage({super.key});
2024-04-04 14:35:33 +00:00
static String title = "home";
2024-04-04 16:15:30 +00:00
2024-03-26 16:17:04 +00:00
@override
State<HomePage> createState() => _HomePage();
}
class _HomePage extends State<HomePage> {
@override
Widget build(BuildContext context) {
2024-04-04 16:15:30 +00:00
return const Center(
2024-03-26 16:17:04 +00:00
child: Column(
2024-04-04 16:15:30 +00:00
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'You have pushed the button this many times:',
),
],
));
2024-03-26 16:17:04 +00:00
}
}