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