bdlukaa / native_admob_flutter

Easy-to-make native ads in flutter using AdMOB SDK.
https://pub.dev/packages/native_admob_flutter
BSD 3-Clause "New" or "Revised" License
80 stars 56 forks source link

Letter spacing is too wider #88

Open jja08111 opened 3 years ago

jja08111 commented 3 years ago

I think the letter-spacing in the AdTextView value needs to convert appropriately like the flutter value. Currently, this is too wider than flutter.

bdlukaa commented 3 years ago

Can you show some example?

jja08111 commented 3 years ago

Sure, Here is an example I made using the example of this plugin. The two values differ approximately 25 times.

Screenshot

화면 캡처 2021-07-20 222739

Code

...
Text('Letter spacing: 0.1', style: TextStyle(letterSpacing: 0.1, fontSize: 20)),
AdTextView(style: TextStyle(color: Colors.red, letterSpacing: 0.1, fontSize: 20)),
...