-
Notifications
You must be signed in to change notification settings - Fork 29k
Closed
Labels
a: typographyText rendering, possibly libtxtText rendering, possibly libtxtengineflutter/engine repository. See also e: labels.flutter/engine repository. See also e: labels.
Description
Steps to Reproduce
issue1
when background is an opacity color,a line will show at top.
var color = Color(0xfffe7801);
var colorb = color.withOpacity(0.1);
Paint paint=new Paint();
paint.color = colorb;
var ts = Text(
" 悬赏 ¥ " +"ddddddddddddd" + " ",
style: TextStyle(color: color, background: paint, fontSize: 13.0,));
issue2
when background is an opacity 1.0 color, the Chinese words is missing.
var color=Colors.black;
var colorb=Colors.green;
Paint paint=new Paint();
paint.color = colorb;
var ts = Text(
" 悬赏 ¥ " +"ddddddddddddd" + " ",
style: TextStyle(color: color, background: paint, fontSize: 13.0,));
Metadata
Metadata
Assignees
Labels
a: typographyText rendering, possibly libtxtText rendering, possibly libtxtengineflutter/engine repository. See also e: labels.flutter/engine repository. See also e: labels.