f3ac4a502c
Used as a placeholder, whilst other screens are currently worked on. NOTE: there is no finished specification for Products and Shopping List Items
19 lines
480 B
Dart
19 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');
|
|
}
|
|
}
|