Skip to content

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

Closed
balvinderz opened this issue Apr 7, 2021 · 7 comments · Fixed by flutter-tizen/engine#69
Closed

Text not rendering on samsung galaxy active watch 2 #72

balvinderz opened this issue Apr 7, 2021 · 7 comments · Fixed by flutter-tizen/engine#69
Labels
bug Something isn't working

Comments

@balvinderz
Copy link

balvinderz commented Apr 7, 2021

WhatsApp Image 2021-04-07 at 1 02 33 PM (1)

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")
],
)),
),
);

}
}`

@swift-kim
Copy link
Member

Thanks for reporting! This looks like a regression introduced by flutter-tizen/engine#40.

@balvinderz
Copy link
Author

How to fix it for now ?

@swift-kim
Copy link
Member

A quick workaround is to change the system font to any non-default font in the device settings.

@swift-kim swift-kim added the bug Something isn't working label Apr 9, 2021
@swift-kim
Copy link
Member

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.

@luuksteitner
Copy link

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.

@swift-kim
Copy link
Member

@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.

@swift-kim
Copy link
Member

swift-kim commented Apr 23, 2021

The new engine release will be available in a few days. Thank you for your patience!

--

Done! #93

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants