-
-
Notifications
You must be signed in to change notification settings - Fork 913
Closed
Description
When applying the system accessibility size settings, the text in a Html
widget gets scaled way more than a normal Text
widget. Consider the following code:
import 'package:flutter/material.dart';
import 'package:flutter_html/flutter_html.dart';
import 'package:flutter_html/style.dart';
void main() {
runApp(HtmlAccessibilityApp());
}
class HtmlAccessibilityApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('')),
body: Column(
children: [
Text('Normal Text'),
Html(data: 'Html Text'),
],
),
),
);
}
}
When you scale the text using iOS accessibility settings, you see the following:
I mentioned this in #303 but I thought it might be worth having it's own ticket (they may end up being related).
dam-mond, raLaaaa and dariocavada
Metadata
Metadata
Assignees
Labels
No labels