Skip to content

Commit

Permalink
Remove bottom padding from SignedInConfirmationDialog (#1562)
Browse files Browse the repository at this point in the history
  • Loading branch information
luizgrp authored Aug 8, 2023
1 parent 5ae151c commit b3885a7
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ import java.time.Duration

private const val AVATAR_BACKGROUND_COLOR = 0xFF4ECDE6
private const val AVATAR_TEXT_COLOR = 0xFF202124
private const val BOTTOM_PADDING_SCREEN_PERCENTAGE = 0.094
private const val HORIZONTAL_PADDING_SCREEN_PERCENTAGE = 0.094

/**
Expand Down Expand Up @@ -113,13 +112,11 @@ internal fun SignedInConfirmationDialogContent(
) {
val configuration = LocalConfiguration.current
val horizontalPadding = (configuration.screenWidthDp * HORIZONTAL_PADDING_SCREEN_PERCENTAGE).dp
val bottomPadding = (configuration.screenHeightDp * BOTTOM_PADDING_SCREEN_PERCENTAGE).dp

Column(
modifier = modifier
.fillMaxSize()
.padding(horizontal = horizontalPadding)
.padding(bottom = bottomPadding),
.padding(horizontal = horizontalPadding),
verticalArrangement = Arrangement.Center,
horizontalAlignment = Alignment.CenterHorizontally
) {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b3885a7

Please sign in to comment.