You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -237,14 +237,14 @@ The view has four rendering styles. The `wait` style is the default style, and l
237
237
|`wait`| No |*(default)* The view blocks the main queue until its finished rendering. |
238
238
239
239
240
-
#### 🪩 Animated
240
+
#### 🪩 Rendering Animation
241
241
242
-
The `animated` modifier applies to the view when using the asynchronous rendering styles `empty`, `original`, or `progress`.
242
+
When using the asynchronous rendering styles `empty`, `original`, or `progress`, use this modifier to determine the animation applied to the transition between views. The default value is `none`.
243
243
244
244
```swift
245
245
LaTeX(input)
246
246
.renderingStyle(.original)
247
-
.animated()
247
+
.renderingAnimation(.easeIn)
248
248
```
249
249
250
250
> In the above example, the input text will be displayed until the SVGs have been rendered at which point the rendered views will animate in to view.
0 commit comments