Implement new account deletion and auth flows

Signed-off-by: denis0001-dev <denis0001.dev@ya.ru>
This commit is contained in:
2026-06-24 17:16:34 +03:00
Unverified
parent 712e4a9ed4
commit 306458bcd8
41 changed files with 3823 additions and 1596 deletions
@@ -0,0 +1,17 @@
package com.pr0gramm3r101.utils
import androidx.compose.foundation.layout.WindowInsets
import androidx.compose.foundation.layout.ime
import androidx.compose.runtime.Composable
import androidx.compose.ui.platform.LocalDensity
@Composable
actual fun rememberImeMotion(): ImeMotion {
val density = LocalDensity.current
val currentBottomPx = WindowInsets.ime.getBottom(density)
return ImeMotion(
currentBottomPx = currentBottomPx,
sourceBottomPx = currentBottomPx,
targetBottomPx = currentBottomPx,
)
}