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

add: placeholder infotext under chart

parent 5df3ade6
No related branches found
No related tags found
Loading
......@@ -155,8 +155,8 @@ class _BarDataState extends State<BarData> {
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
_buildLegendItem(Colors.white60, "Snow"),
_buildLegendItem(const Color(0xFF13dbff), "Slush ice"),
_buildLegendItem(const Color(0xFF000085), "Black ice"),
_buildLegendItem(const Color(0xFF13dbff), "Slush ice"),
],
),
),
......
......@@ -264,9 +264,37 @@ class _MapContainerWidgetState extends State<MapContainerWidget> {
),
SizedBox(
width: screenWidth * boxWidth * 1.2,
height: screenWidth * boxHeight * 1.5,
child: const StatCharts(),
)
),
const SizedBox(height: contPadding*2),
SizedBox(
width: screenWidth * boxWidth * 1.2,
child: Padding(
padding: const EdgeInsets.only(top: 20, left: 30),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Icon(
Icons.info,
color: Colors.white54,
),
const SizedBox(width: 10),
Expanded(
child: Text(
'For every x of y, there has to be z cm of '
'q for every kg of applied weight to ensure ?',
style: regTextStyle,
),
),
],
),
],
),
),
),
const SizedBox(height: contPadding*2),
],
),
],
......
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