softplayer-web/lib/pages/catalog.dart

46 lines
1.1 KiB
Dart

import 'package:flutter/material.dart';
import 'package:softplayer_web/components/menubar.dart';
class CatalogPage extends StatefulWidget {
const CatalogPage({super.key});
final String title = "catalog";
@override
State<CatalogPage> createState() => _CatalogPage();
}
class _CatalogPage extends State<CatalogPage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: MenuPanel(tab: TabName.catalog),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headlineMedium,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment v rot',
child: const Icon(Icons.hd),
),
);
}
}