Partially implemented the page view functionality

-page controller on change need to be figured correctly
This commit is contained in:
Mohammad Salameh
2024-03-06 23:11:09 +03:00
parent b3fcca639a
commit c5f88caec3
12 changed files with 503 additions and 276 deletions

View File

@ -17,3 +17,11 @@ class SpacesSelected extends SpacesState {
SpacesSelected(this.space);
}
class RoomSelected extends SpacesState {
final RoomModel room;
RoomSelected(this.room);
}
class RoomUnSelected extends SpacesState {}