StyleVariable

fun <T : StylePropertyValue> StyleVariable(defaultFallback: T? = null, prefix: String? = null): StyleVariablePropertyProvider<T>(source)
fun <T : StylePropertyValue> StyleVariable(prefix: String? = null): StyleVariablePropertyProvider<T>(source)

Helper method for declaring a StyleVariable.PropertyValue instance via the by keyword.


fun <T : Number> StyleVariable(defaultFallback: T? = null, prefix: String? = null): StyleVariableNumberProvider<T>(source)

Helper method for declaring a StyleVariable.NumberValue instance via the by keyword.


fun <T : String> StyleVariable(defaultFallback: T? = null, prefix: T? = null): StyleVariableStringProvider(source)

Helper method for declaring a StyleVariable.StringValue instance via the by keyword.


fun <T : CSSAngleValue> StyleVariable(defaultFallback: T? = null, prefix: String? = null): StyleVariablePropertyProvider<CSSAngleNumericValue>(source)

Helper method for declaring a StyleVariable.PropertyValue instance representing an angle value via the by keyword.


fun <T : CSSLengthValue> StyleVariable(defaultFallback: T? = null, prefix: String? = null): StyleVariablePropertyProvider<CSSLengthNumericValue>(source)

Helper method for declaring a StyleVariable.PropertyValue instance representing a length value via the by keyword.


fun <T : CSSPercentageValue> StyleVariable(defaultFallback: T? = null, prefix: String? = null): StyleVariablePropertyProvider<CSSPercentageNumericValue>(source)

Helper method for declaring a StyleVariable.PropertyValue instance representing a percentage value via the by keyword.


fun <T : CSSLengthOrPercentageValue> StyleVariable(defaultFallback: T? = null, prefix: String? = null): StyleVariablePropertyProvider<CSSLengthOrPercentageNumericValue>(source)

Helper method for declaring a StyleVariable.PropertyValue instance representing a length or percentage value via the by keyword.


Helper method for declaring a StyleVariable.PropertyValue instance representing a time value via the by keyword.


Helper method for declaring a StyleVariable.PropertyValue instance representing a flex value via the by keyword.