shows OccupancyHeatMapBox instead of a Placeholder in vertical srcollable AnalyticsOccupancyView.

This commit is contained in:
Faris Armoush
2025-05-20 13:51:04 +03:00
parent 625f737791
commit 4326559e14

View File

@ -22,7 +22,7 @@ class AnalyticsOccupancyView extends StatelessWidget {
children: [ children: [
SizedBox(height: height * 0.45, child: const OccupancyEndSideBar()), SizedBox(height: height * 0.45, child: const OccupancyEndSideBar()),
SizedBox(height: height * 0.5, child: const OccupancyChartBox()), SizedBox(height: height * 0.5, child: const OccupancyChartBox()),
SizedBox(height: height * 0.5, child: const Placeholder()), SizedBox(height: height * 0.5, child: const OccupancyHeatMapBox()),
], ],
), ),
); );