-
Notifications
You must be signed in to change notification settings - Fork 67
Text not rendering on samsung galaxy active watch 2 #72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thanks for reporting! This looks like a regression introduced by flutter-tizen/engine#40. |
How to fix it for now ? |
A quick workaround is to change the system font to any non-default font in the device settings. |
Or to use custom fonts like google_fonts. The gallery app is working fine on watches because it uses a TextTheme based on google_fonts. |
Same problem on Galaxy watch 3. So far I haven't been able to figure out how to change the system font on this watch. |
@flutter-tizen/maintainers Please take a look at this issue. This issue should be related to FontConfig (enabled by flutter-tizen/engine#40) and the font resolution mechanism on Tizen (I don't know how it works). I'm not in the office this week so I can't test on devices. |
The new engine release will be available in a few days. Thank you for your patience! -- Done! #93 |
Sample Code
`import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget
{
@OverRide
Widget build(BuildContext context) {
// TODO: implement build
return MaterialApp(
home: Scaffold(
backgroundColor: Colors.red,
body: Center(child: Column(
children: [
Image.asset("assets/flutter_icon.png"),
Text("sojaasadaddd")
],
)),
),
);
}
}`
The text was updated successfully, but these errors were encountered: