WIP: something is going on

This commit is contained in:
2024-04-04 16:35:33 +02:00
parent 3cc8edfc8c
commit 8e91619b47
7 changed files with 143 additions and 70 deletions

View File

@ -1,11 +1,16 @@
import 'package:flutter/material.dart';
import 'package:grpc/grpc_web.dart';
import 'package:softplayer_web/api/third_party/chartmuseum.dart';
import 'package:softplayer_web/components/catalog_card.dart';
import 'package:softplayer_web/components/menubar.dart';
import 'package:softplayer_web/models/catalog_entry.dart';
class CatalogPage extends StatefulWidget {
const CatalogPage({super.key});
final GrpcWebClientChannel grpcChannel;
const CatalogPage({
super.key,
required this.grpcChannel,
});
final String title = "catalog";
@override

View File

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