From 46825b5d5cd75fefd133b6428d09ccd969508e9e Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Tue, 22 Aug 2023 23:03:01 +0200 Subject: [PATCH 1/2] Add more docs for repeat mode --- docs/api/ui-maui/sklottieview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/ui-maui/sklottieview.md b/docs/api/ui-maui/sklottieview.md index 4d7567d8..86cee4e4 100644 --- a/docs/api/ui-maui/sklottieview.md +++ b/docs/api/ui-maui/sklottieview.md @@ -15,7 +15,7 @@ There are several properties that can be used to control th animation playback: | **Source** | `SKLottieImageSource` | The Lottie [image source](#source) to playback in the view. | | **Duration** | `TimeSpan` | A value indicating the total duration of the animation. | | **Progress** | `TimeSpan` | The current playback progress of the animation. | -| **RepeatCount** | `int` | The number of times to repeat the animation. Default is 0 (no repeat). | +| **RepeatCount** | `int` | The number of times to repeat the animation. Default is 0 (no repeat). A negative (-1) value will repeat forever. | | **RepeatMode** | `SKLottieRepeatMode` | The way in which to repeat the animation. Default is `Restart`. | | **IsAnimationEnabled** | `bool` | Determines whether the control will play the animation provided. | | **IsComplete** | `bool` | A value that indicates whether all systems are complete. | From 61c672f48d09c7f9bec99d8da8ced36d2f39d1d0 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Tue, 22 Aug 2023 23:04:26 +0200 Subject: [PATCH 2/2] Update sklottieview.md --- docs/api/ui-forms/sklottieview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/ui-forms/sklottieview.md b/docs/api/ui-forms/sklottieview.md index 4d7567d8..86cee4e4 100644 --- a/docs/api/ui-forms/sklottieview.md +++ b/docs/api/ui-forms/sklottieview.md @@ -15,7 +15,7 @@ There are several properties that can be used to control th animation playback: | **Source** | `SKLottieImageSource` | The Lottie [image source](#source) to playback in the view. | | **Duration** | `TimeSpan` | A value indicating the total duration of the animation. | | **Progress** | `TimeSpan` | The current playback progress of the animation. | -| **RepeatCount** | `int` | The number of times to repeat the animation. Default is 0 (no repeat). | +| **RepeatCount** | `int` | The number of times to repeat the animation. Default is 0 (no repeat). A negative (-1) value will repeat forever. | | **RepeatMode** | `SKLottieRepeatMode` | The way in which to repeat the animation. Default is `Restart`. | | **IsAnimationEnabled** | `bool` | Determines whether the control will play the animation provided. | | **IsComplete** | `bool` | A value that indicates whether all systems are complete. |