You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected: The sun is displayed correctly
Actual: The sun is displayed as different symbol
There are more emojis with the same problem but not all.
If you remove the "HTML" widget and restart the app (really stop the app and start again, hot reload or the restart button in VS Code is not enough) the emojis are fine again.
import 'package:flutter_html/flutter_html.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
child: Column(
children: [
TextField(),
Html(
data: "<h1>text</h1>"
),
],
),
)
),
);
}
}```
The text was updated successfully, but these errors were encountered:
Here is a small example app.
Steps to reproduce:
Expected: The sun is displayed correctly
Actual: The sun is displayed as different symbol
There are more emojis with the same problem but not all.
If you remove the "HTML" widget and restart the app (really stop the app and start again, hot reload or the restart button in VS Code is not enough) the emojis are fine again.
The text was updated successfully, but these errors were encountered: