flutter_overlay_window icon indicating copy to clipboard operation
flutter_overlay_window copied to clipboard

Text display problem

Open remarkked opened this issue 10 months ago • 1 comments

For some reason I see these yellow lines both in debug and release builds below text and don't understand the reason. Text has no custom font or complicated style (only size, color and weight). Any ideas?

The same single widget appearance inside main app widget (to the left) and inside overlay widget (to the right):

Image

flutter_overlay_window version 0.4.5 from pub.dev

No any logcat errors / warnings tagged flutter or OverLay

remarkked avatar Jan 28 '25 11:01 remarkked

Found out decorations have been somehow applied to my text widgets, setting decorationThickness to 0 and decorationColor to transparent solved the issue.

But it seems something is broken because flutter default fontFamily: "Play" isn't applied to Text widgets in the overlay.

remarkked avatar Jan 31 '25 06:01 remarkked

Try to wrap your widget with material widget

X-SLAYER avatar Apr 20 '25 15:04 X-SLAYER