joekndy / MarqueeText

Marquee or "scrolling text" effect in SwiftUI
270 stars 43 forks source link

Doesn't scroll in WidgetKit #21

Open ChopsKingsland opened 1 year ago

ChopsKingsland commented 1 year ago

I have a widget with this library, but the example doesn't seem to scroll... is this a limitation of WidgetKit?

siveryt commented 4 months ago

You can't do animated stuff in WidgetKit (except for transition animations). Widgets are not rendered in real time. You would have to create a timeline entry for every frame of the animation, which would exceed the memory constraints :/ I'm sorry, but I think its not possible.