This commit is contained in:
Nico
2024-11-20 15:23:49 +01:00
parent c9e9fe10da
commit c292476322
14 changed files with 3655 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
class ExcursionMain extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Titlebar")
),
body: Column(
children: [
]
)
);
}
}