Implement full encryption protocol and haptic events on iOS

Signed-off-by: denis0001-dev <denis0001.dev@ya.ru>
This commit is contained in:
2026-02-08 16:51:36 +03:00
Unverified
parent bb6cdfadbb
commit e10f19d1e1
12 changed files with 463 additions and 94 deletions
@@ -175,4 +175,9 @@ operator fun PaddingValues.plus(other: PaddingValues) = PaddingValues(
}
)
expect val materialYouAvailable: Boolean
expect val materialYouAvailable: Boolean
inline fun <T> T.require( message: String, condition: (T) -> Boolean): T {
require(condition(this)) { message }
return this
}