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

update: font specs

parent 53338255
No related branches found
No related tags found
1 merge request!2App2
...@@ -23,12 +23,13 @@ final titleStyle = GoogleFonts.dmSans( ...@@ -23,12 +23,13 @@ final titleStyle = GoogleFonts.dmSans(
color: textColor, color: textColor,
fontWeight: FontWeight.bold, // Add this line to make the text bold fontWeight: FontWeight.bold, // Add this line to make the text bold
); );
final regTextStyle = GoogleFonts.dmSans(fontSize: 20, color: textColor); final regTextStyle = GoogleFonts.dmSans(fontSize: 19, color: textColor);
final chartTextStyle = GoogleFonts.dmSans(fontSize: 14, color: textColor); final chartTextStyle = GoogleFonts.dmSans(fontSize: 14, color: textColor);
final subHeadingStyle = GoogleFonts.dmSans(fontSize: 22, color: textColor, fontWeight: FontWeight.bold);
// Colors // Colors
const mediumBlue = Color(0xFF015E8F); const darkBlue = Color(0xFF015E8F);
const darkBlue = Color(0xFF00B4D8); const teal = Color(0xFF00B4D8);
const darkestBlue = Color(0xFF03045E); const darkestBlue = Color(0xFF03045E);
const lightBlue = Color(0xFFCAF0F8); const lightBlue = Color(0xFFCAF0F8);
const superLightBlue = Color(0xFFCAF0F8); const superLightBlue = Color(0xFFCAF0F8);
......
...@@ -214,9 +214,10 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { ...@@ -214,9 +214,10 @@ class _MapContainerWidgetState extends State<MapContainerWidget> {
'Ice stats', 'Ice stats',
style: titleStyle, style: titleStyle,
), ),
const Divider(),
Text( Text(
'Time of measurement', 'Time of measurement',
style: regTextStyle, style: subHeadingStyle,
), ),
Text( Text(
'Date ${(selectedMarker?.timeMeasured.day ?? '-')}/${(selectedMarker?.timeMeasured.month ?? '-')}/${(selectedMarker?.timeMeasured.year ?? '-')}', 'Date ${(selectedMarker?.timeMeasured.day ?? '-')}/${(selectedMarker?.timeMeasured.month ?? '-')}/${(selectedMarker?.timeMeasured.year ?? '-')}',
...@@ -228,7 +229,7 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { ...@@ -228,7 +229,7 @@ class _MapContainerWidgetState extends State<MapContainerWidget> {
), ),
const SizedBox(height: contPadding), const SizedBox(height: contPadding),
Text( Text(
'Location: (placeholder, placeholder)', 'Measuring point: (${selectedMarker?.dataList[0].latitude}, ${selectedMarker?.dataList[0].latitude})',
style: regTextStyle, style: regTextStyle,
), ),
const SizedBox(height: contPadding), const SizedBox(height: contPadding),
......
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