We are experimenting with delivering Flutter apps to Tizen based TVs. During our exploration we found that the app is being scaled up by a factor of 1.6 which seems to be coming from this code:
|
double scale_factor = dpi / 90.0 * kProfileFactor; |
This is making our app elements look too big even though the window size is correct at 1920 x 1080.
Is there a recommended approach to adjusting this scale in the Flutter app globally? Or do we need to adjust the widget and height of every widget when deployed to Tizen?
We are experimenting with delivering Flutter apps to Tizen based TVs. During our exploration we found that the app is being scaled up by a factor of 1.6 which seems to be coming from this code:
embedder/flutter/shell/platform/tizen/flutter_tizen_view.cc
Line 61 in c382987
This is making our app elements look too big even though the window size is correct at 1920 x 1080.
Is there a recommended approach to adjusting this scale in the Flutter app globally? Or do we need to adjust the widget and height of every widget when deployed to Tizen?