softplayer-web/lib/pages/about.dart

34 lines
830 B
Dart
Raw Normal View History

2024-03-26 16:17:04 +00:00
import 'package:flutter/material.dart';
import 'package:softplayer_web/components/menubar.dart';
class AboutPage extends StatefulWidget {
const AboutPage({super.key});
final String title = "about";
@override
State<AboutPage> createState() => _AboutPage();
}
class _AboutPage extends State<AboutPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
2024-03-27 21:07:53 +00:00
appBar: const MenuPanel(tab: TabName.about),
2024-03-26 16:17:04 +00:00
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Text(
'test',
style: Theme.of(context).textTheme.headlineMedium,
),
],
),
),
);
}
}