-
Notifications
You must be signed in to change notification settings - Fork 28.9k
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.
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
zmtzawqlp commentedon Nov 14, 2018
zoechi commentedon Nov 14, 2018
Please add the output of
flutter doctor -v
.zmtzawqlp commentedon Nov 14, 2018
zmtzawqlp commentedon Nov 14, 2018
thanks,please check this issue.
cixiu commentedon Jan 17, 2019
zoechi commentedon Jan 17, 2019
@cixiu Using "add reaction" on the initial comment would increase priority while
+1
comments are rather pointless and cause lots of people to get notified for no reason.To get notified yourself use the [Subscribe] button to the top right instead.
GaryQian commentedon Jan 28, 2019
Closing as is a duplicate of #24337 please continue to track and comment on the other issue
github-actions commentedon Aug 14, 2021
This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of
flutter doctor -v
and a minimal reproduction of the issue.