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

@ -0,0 +1,21 @@
import 'package:flutter/material.dart';
import 'package:softplayer_web/components/menubar.dart';
class PageWrapper extends StatelessWidget{
final Widget child;
final MenuPanel appBar;
const PageWrapper({
super.key,
required this.child,
required this.appBar
});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: appBar,
body: child,
);
}
}