@momo-kits/native-kits 0.156.6-beta.11-debug → 0.156.6-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
|
@@ -142,8 +142,8 @@ fun RenderIcon(
|
|
|
142
142
|
useTintColor: Boolean = true,
|
|
143
143
|
icon: String = "",
|
|
144
144
|
forceLoading: Boolean = false,
|
|
145
|
-
bgColor: Color,
|
|
146
|
-
textColor: Color,
|
|
145
|
+
bgColor: Color? = null,
|
|
146
|
+
textColor: Color? = null,
|
|
147
147
|
) {
|
|
148
148
|
val iconSize = remember(size) { getIconSize(size) }
|
|
149
149
|
val margin = remember(size) { getIconSpace(size) }
|
package/gradle.properties
CHANGED