diff --git a/app/lib/widgets/bar_graph/bar_data.dart b/app/lib/widgets/bar_graph/bar_data.dart index 6e97fc6b4cb5e908d0c09b0de4620af50a2e3c67..4b80bacc2d32ccc5107bfb15cdac915438218986 100644 --- a/app/lib/widgets/bar_graph/bar_data.dart +++ b/app/lib/widgets/bar_graph/bar_data.dart @@ -14,7 +14,6 @@ class BarData extends StatefulWidget { class _BarDataState extends State<BarData> { static const double barWidth = 30; - // NB should be allocated values dynamically /* selectedTile.IceStats.asMap().forEach((index, iceStats) { diff --git a/app/lib/widgets/main_layout.dart b/app/lib/widgets/main_layout.dart index 29c4256c963ba917862a404a8d2edcd9059543fd..021b77fd3bd1ac19baa7a510d1f6c54ac9889c95 100644 --- a/app/lib/widgets/main_layout.dart +++ b/app/lib/widgets/main_layout.dart @@ -216,7 +216,7 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { ], ), const SizedBox(height: contPadding), // Padding between containers - Column( + Column( // Ice stats container crossAxisAlignment: CrossAxisAlignment.start, children: [ SizedBox( @@ -281,10 +281,13 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { ), const SizedBox(width: 10), Expanded( - child: Text( - 'There may be multiple layers of black ice and slush ice stacked' - ' between the snow and the steel ice.', - style: regTextStyle, + child: Padding( + padding: const EdgeInsets.only(right: 15), + child: Text( + 'There may be multiple layers of black ice and slush ice stacked' + ' between the snow and the steel ice.', + style: regTextStyle, + ), ), ), ], diff --git a/app/lib/widgets/stat_charts.dart b/app/lib/widgets/stat_charts.dart index f97ee153ee00e797d83b30065e7371f4e7c6be1e..e76c02d18e9173eb529a292a209a6e695cfd0b43 100644 --- a/app/lib/widgets/stat_charts.dart +++ b/app/lib/widgets/stat_charts.dart @@ -75,7 +75,7 @@ class StatCharts extends StatelessWidget { ),*/ const SizedBox(height: 20), SizedBox( - width: MediaQuery.of(context).size.width, + width: MediaQuery.of(context).size.width-30, child: const BarData(), ), ], diff --git a/server/__pycache__/consts.cpython-311.pyc b/server/__pycache__/consts.cpython-311.pyc index d47db4fadc975e2973e185a82508db4d8429a975..64000a10b34e12ebb363886ebb405b756392406e 100644 Binary files a/server/__pycache__/consts.cpython-311.pyc and b/server/__pycache__/consts.cpython-311.pyc differ diff --git a/server/map_handler/__pycache__/add_lake.cpython-311.pyc b/server/map_handler/__pycache__/add_lake.cpython-311.pyc index 6f2d57a52f8c159e10e5f2ba1f0bd62a7ec6c0f0..b4bf2ae822dcf9a98f4c3cd04bdf90cb961a59a3 100644 Binary files a/server/map_handler/__pycache__/add_lake.cpython-311.pyc and b/server/map_handler/__pycache__/add_lake.cpython-311.pyc differ diff --git a/server/map_handler/__pycache__/get_lake.cpython-311.pyc b/server/map_handler/__pycache__/get_lake.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..136f83f681989d911f21f4c715020cd44e8a2066 Binary files /dev/null and b/server/map_handler/__pycache__/get_lake.cpython-311.pyc differ diff --git a/server/map_handler/__pycache__/get_measurements.cpython-311.pyc b/server/map_handler/__pycache__/get_measurements.cpython-311.pyc index 3c546c803103ceed9c919b9c8ddcce41627366ab..25db6829c4c9367f2c4a309982dd48696767a7af 100644 Binary files a/server/map_handler/__pycache__/get_measurements.cpython-311.pyc and b/server/map_handler/__pycache__/get_measurements.cpython-311.pyc differ