@momo-kits/native-kits 0.159.1-beta.11-debug → 0.159.1-beta.12-debug
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/compose/build.gradle.kts
CHANGED
package/compose/compose.podspec
CHANGED
|
@@ -119,7 +119,7 @@ actual fun LottieAnimation(
|
|
|
119
119
|
CompatibleAnimationView(value).apply {
|
|
120
120
|
translatesAutoresizingMaskIntoConstraints = true
|
|
121
121
|
|
|
122
|
-
setBackgroundColor(bgColor?.toUIColor() ?: UIColor.
|
|
122
|
+
setBackgroundColor(bgColor?.toUIColor() ?: UIColor.clearColor)
|
|
123
123
|
|
|
124
124
|
setLoopAnimationCount(-1.0)
|
|
125
125
|
setAnimationSpeed(1.0)
|
|
@@ -140,7 +140,7 @@ actual fun LottieAnimation(
|
|
|
140
140
|
},
|
|
141
141
|
|
|
142
142
|
update = { view ->
|
|
143
|
-
view.setBackgroundColor(bgColor?.toUIColor() ?: UIColor.
|
|
143
|
+
view.setBackgroundColor(bgColor?.toUIColor() ?: UIColor.clearColor)
|
|
144
144
|
|
|
145
145
|
if (tintColor != null) {
|
|
146
146
|
val uiColor = tintColor.toUIColor()
|
package/gradle.properties
CHANGED