Daily commit
This commit is contained in:
19
lib/ui/page/tour_detail.dart
Normal file
19
lib/ui/page/tour_detail.dart
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user