20 lines
480 B
Dart
20 lines
480 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:outbag_app/backend/room.dart';
|
||
|
|
||
|
class RoomProductsPage extends StatefulWidget {
|
||
|
final RoomInfo? info;
|
||
|
final Room? room;
|
||
|
|
||
|
const RoomProductsPage(this.room, this.info, {super.key});
|
||
|
|
||
|
@override
|
||
|
State<StatefulWidget> createState() => _RoomProductsPageState();
|
||
|
}
|
||
|
|
||
|
class _RoomProductsPageState extends State<RoomProductsPage> {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return const Text('Products');
|
||
|
}
|
||
|
}
|