actions-test/lib/screens/room/categories.dart
Jakob Meier f3ac4a502c
Added stub screens
Used as a placeholder,
whilst other screens are currently worked on.

NOTE: there is no finished specification for
Products and Shopping List Items
2023-03-22 21:16:00 +01:00

19 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');
}
}