Browse Source

PIN unlock : adjust ui a bit

pull/1624/head
ganfra 11 months ago
parent
commit
da4dd44654
  1. 4
      features/lockscreen/impl/src/main/kotlin/io/element/android/features/lockscreen/impl/unlock/PinUnlockView.kt
  2. 2
      features/lockscreen/impl/src/main/kotlin/io/element/android/features/lockscreen/impl/unlock/keypad/PinKeypad.kt

4
features/lockscreen/impl/src/main/kotlin/io/element/android/features/lockscreen/impl/unlock/PinUnlockView.kt

@ -78,7 +78,9 @@ fun PinUnlockView( @@ -78,7 +78,9 @@ fun PinUnlockView(
)
}
val footer = @Composable {
PinUnlockFooter()
PinUnlockFooter(
modifier = Modifier.padding(top = 24.dp)
)
}
val content = @Composable { constraints: BoxWithConstraintsScope ->
PinKeypad(

2
features/lockscreen/impl/src/main/kotlin/io/element/android/features/lockscreen/impl/unlock/keypad/PinKeypad.kt

@ -49,7 +49,7 @@ import io.element.android.libraries.theme.ElementTheme @@ -49,7 +49,7 @@ import io.element.android.libraries.theme.ElementTheme
import kotlinx.collections.immutable.ImmutableList
import kotlinx.collections.immutable.persistentListOf
private val spaceBetweenPinKey = 8.dp
private val spaceBetweenPinKey = 16.dp
private val maxSizePinKey = 80.dp
@Composable

Loading…
Cancel
Save