diff --git a/app/lib/pages/widgets/map_widget.dart b/app/lib/pages/widgets/map_widget.dart
index aaf5c07903b5772e7712a9601bc76fc037689c85..6cd597211ffaf3f16d5b7567557cb4efaf422612 100644
--- a/app/lib/pages/widgets/map_widget.dart
+++ b/app/lib/pages/widgets/map_widget.dart
@@ -89,10 +89,18 @@ class _MapContainerWidgetState extends State<MapContainerWidget> {
                           color: darkBlue,
                           child: Stack(
                             children: [
-                              Center(
-                                child: Text(
-                                  'Placeholder',
-                                  style: regTextStyle,
+                              Visibility( // Content only visible when box is maximized
+                                visible: !isMinimized,
+                                child: Center(
+                                  child: SizedBox(
+                                    width: (screenWidth * boxWidth) / 2.3,
+                                    height: (screenWidth * boxWidth) / 2.3,
+                                    child: Text(
+                                      'Placeholder',
+                                      style: regTextStyle,
+                                    ),
+                                    //child: YourChartWidget(), // Replace YourChartWidget with your actual chart widget
+                                  ),
                                 ),
                               ),
                               Positioned(
diff --git a/app/lib/pages/widgets/quick_view_chart.dart b/app/lib/pages/widgets/quick_view_chart.dart
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391