Daily commit

This commit is contained in:
Dennis Nemec
2026-02-05 10:46:13 +01:00
parent 4e808e234d
commit e0007dcf33
51 changed files with 2131 additions and 139 deletions

View File

@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class TourDetailPage extends StatefulWidget {
/// The id of the car that has been chosen a step before.
final String supplierCarId;
const TourDetailPage({super.key, required this.supplierCarId});
@override
State<StatefulWidget> createState() => _TourDetailPageState();
}
class _TourDetailPageState extends State<TourDetailPage> {
@override
Widget build(BuildContext context) {
// TODO: implement build
throw UnimplementedError();
}
}