I am getting many reviews that my app needs more animations, especially for it’s AI components. I looked at lottie and there are some nice animations available, but the “Web Embed” option is way too big.
Any ideas on how to incorporate these animations in my app? Anything that would make the app more “high-tech” is welcome tbh.
Here’s the animation I’m thinking about:
Would love it if it could be something small that could be put in front of a text or sth, similar to the way the icon in the “Hint” component works!
For some reason, it doesn’t seem to work when using the template computed column instead of just pasting it in rich text. Any idea as to why and workarounds?
If you’re writing HTML in a template column and displaying it through a Rich Text component, it’s a good idea to keep things tightly formatted — avoiding leading spaces and extra blank lines.
These components seem to use a mix of Markdown-like parsing and HTML sanitization, which means:
Lines starting with spaces or tabs can sometimes be treated as preformatted blocks (like <code> or <pre>), not actual HTML.
Valid tags like <div> or <h3> may show up as plain text if indented.
Extra vertical whitespace (empty lines) might lead to unexpected layout or spacing behavior.
Best practice: Keep your HTML left-aligned and minimal — no leading indentation, and avoid unnecessary line breaks.