Skip to content
Snippets Groups Projects
Commit 242ee6f2 authored by Sara Savanovic Djordjevic's avatar Sara Savanovic Djordjevic
Browse files

update: quick view content visible only on maximalization

parent ad3204e1
No related branches found
No related tags found
No related merge requests found
......@@ -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(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment