Added first draft of login and tour select page
This commit is contained in:
18
lib/ui/page/tour.dart
Normal file
18
lib/ui/page/tour.dart
Normal file
@ -0,0 +1,18 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class TourPage extends StatefulWidget {
|
||||
const TourPage({super.key});
|
||||
|
||||
@override
|
||||
State<StatefulWidget> createState() => _TourPageState();
|
||||
}
|
||||
|
||||
class _TourPageState extends State<TourPage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(title: Text("Lieferungen")),
|
||||
body: Center(child: const Text("HI")),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user