We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5189094 commit c7807b2Copy full SHA for c7807b2
Sources/Public/Animation/LottieAnimationView.swift
@@ -302,8 +302,15 @@ open class LottieAnimationView: LottieAnimationViewBase {
302
303
// MARK: Public
304
305
+ /// The configuration that this `LottieAnimationView` uses when playing its animation
306
+ public var configuration: LottieConfiguration {
307
+ lottieAnimationLayer.configuration
308
+ }
309
+
310
/// Value Providers that have been registered using `setValueProvider(_:keypath:)`
- public private(set) var valueProviders = [AnimationKeypath: AnyValueProvider]()
311
+ public var valueProviders: [AnimationKeypath: AnyValueProvider] {
312
+ lottieAnimationLayer.valueProviders
313
314
315
/// Describes the behavior of an AnimationView when the app is moved to the background.
316
///
0 commit comments