We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d246ae commit ac5d18bCopy full SHA for ac5d18b
lib/widgets/content.dart
@@ -252,6 +252,11 @@ class Heading extends StatelessWidget {
252
fontSize: kBaseFontSize * emHeight,
253
height: 1.4,
254
)
255
+ // Could make boldness relative to ambient text style, which itself
256
+ // might be bolder than normal (e.g. in spoiler headers).
257
+ // But this didn't seem like a clear improvement and would make inline
258
+ // **bold** spans less distinct; discussion:
259
+ // https://github.com/zulip/zulip-flutter/pull/706#issuecomment-2141326257
260
.merge(weightVariableTextStyle(context, wght: 600)),
261
node: node));
262
}
0 commit comments