Updated size

This commit is contained in:
Thomas Fransolet 2024-07-03 16:39:50 +02:00
parent da557503fc
commit dee2dd480a

View File

@ -62,7 +62,7 @@ class _MarkerInfoWidget extends State<MarkerViewWidget> {
Color primaryColor = new Color(int.parse(tabletAppContext.configuration!.primaryColor!.split('(0x')[1].split(')')[0], radix: 16)); Color primaryColor = new Color(int.parse(tabletAppContext.configuration!.primaryColor!.split('(0x')[1].split(')')[0], radix: 16));
Size sizeMarker = Size(size.width * 0.9, size.height * 0.8); Size sizeMarker = Size(size.width * 0.93, size.height * 0.83);
return Center( return Center(
child: Visibility( child: Visibility(
visible: selectedPoint != null, visible: selectedPoint != null,
@ -161,7 +161,7 @@ class _MarkerInfoWidget extends State<MarkerViewWidget> {
width: size.width * 0.65, width: size.width * 0.65,
child: HtmlWidget( child: HtmlWidget(
selectedPoint.title!.firstWhere((t) => t.language == language).value!, selectedPoint.title!.firstWhere((t) => t.language == language).value!,
textStyle: TextStyle(fontSize: 23.0), textStyle: TextStyle(fontSize: 20.0),
), ),
), ),
), ),