add UIKitCustom

This commit is contained in:
InsanusMokrassar 2022-02-17 17:46:15 +06:00
parent 366971bcf5
commit 7b06e0ecb1
2 changed files with 7 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* Reorder arguments in `DefaultComment` fun
* Add `Vertical` and `Horizontal` members in margins
* Add `afterHeaderBuilder` and `beforeFooterBuilder` properties in `Dialog` fun
* Add `UIKitCustom` to be able for simple creating of custom modifiers
## 0.0.35

View File

@ -0,0 +1,6 @@
package dev.inmo.jsuikit.modifiers
class UIKitCustom(
override val classes: Array<String> = emptyArray(),
override val otherAttrs: Map<String, String> = emptyMap()
) : UIKitModifier