Is there a way to make text glow? #3978
-
Hi I'm looking around for something to write a UI with for a project and would like to make text appear to be glowing like in the following example is possibly with for example CSS: https://www.w3schools.com/howto/howto_css_glowing_text.asp. Is something like this possible with Slint? I tried looking through some examples and documentation but could not figure something out. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We are still missing text formatting (#2723). I guess this goes even beyond normal formatting though. Slint has a So Slint can not do that right now with the built-in tools, but maybe you can embed an SVG? That should be capable of any effect;-) |
Beta Was this translation helpful? Give feedback.
We are still missing text formatting (#2723). I guess this goes even beyond normal formatting though.
Slint has a
DropShadow
builtin, but that works withRectangle
s only at this time.So Slint can not do that right now with the built-in tools, but maybe you can embed an SVG? That should be capable of any effect;-)