A text with custom font and big font size 293 shows different on iOS Simulator and a physical device of iPhone Xs max. Other text with smaller font sizes looks exactly the same
But as for my comparison, on physical device text is displayed as fontSize: 80.
@override
Widget build(BuildContext context) {
SizeConfig().init(context);
return Scaffold(
resizeToAvoidBottomPadding: false,
body: Stack(
children: <Widget>[
.....
Column(
children: <Widget>[
Container(
margin: EdgeInsets.only(
top: 1108,
),
child: Text(
title,
style: TextStyle(
color: Color.fromRGBO(0x03, 0xef, 0xbc, 1.0),
fontFamily: 'United Sans Cond',
fontSize: 97,
fontWeight: FontWeight.bold,
letterSpacing: 20.0),
),
),
.....
I can't output outputs of flutter doctor -v, flutter analyze and flutter run --verbose, as I don't have the device and got this as a feedback from a client. For simulator I don't have this issue so I guess the outputs are not necessary for it.
I'll try to provide more data and put the screenshots if I get permission to share them from the client.
A text with custom font and big font size 293 shows different on iOS Simulator and a physical device of iPhone Xs max. Other text with smaller font sizes looks exactly the same
But as for my comparison, on physical device text is displayed as fontSize: 80.
I can't output outputs of
flutter doctor -v,flutter analyzeandflutter run --verbose, as I don't have the device and got this as a feedback from a client. For simulator I don't have this issue so I guess the outputs are not necessary for it.I'll try to provide more data and put the screenshots if I get permission to share them from the client.