Compare commits

...

3 Commits
0.1.5 ... 0.1.6

Author SHA1 Message Date
854bc9f8ca Add support of size and group in UIKitButton 2022-05-23 16:51:09 +06:00
36f5d5661b start 0.1.6 2022-05-23 16:50:50 +06:00
2af001a4f1 Merge pull request #60 from InsanusMokrassar/0.1.5
0.1.5
2022-05-23 13:09:15 +06:00
3 changed files with 12 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## 0.1.6
* Add support of UIKitButton size and group
## 0.1.5
* Fix access to `UIKitSticky`

View File

@@ -9,4 +9,4 @@ android.enableJetifier=true
# Project data
group=dev.inmo
version=0.1.5
version=0.1.6

View File

@@ -12,5 +12,12 @@ sealed class UIKitButton(suffix: String?) : UIKitModifier {
object Link : Type("link")
}
sealed class Size(suffix: String) : UIKitButton(suffix) {
object Small : Size("small")
object Large : Size("large")
}
object Group : UIKitButton("group")
companion object : UIKitButton(null)
}