Skip to content

Commit

Permalink
Fix padding
Browse files Browse the repository at this point in the history
  • Loading branch information
greenart7c3 committed Nov 18, 2024
1 parent b01d838 commit 9faa09e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -437,9 +437,9 @@ fun MainScreen(
val context = LocalContext.current
var profileUrl by remember { mutableStateOf<String?>(null) }
val configuration = LocalConfiguration.current
val screenHeightDp = configuration.screenHeightDp.dp
val percentage = (screenHeightDp * 0.97f)
val verticalPadding = (screenHeightDp - percentage)
val screenWidthDp = configuration.screenWidthDp.dp
val percentage = (screenWidthDp * 0.93f)
val verticalPadding = (screenWidthDp - percentage)
val requestPermissionLauncher =
rememberLauncherForActivityResult(
ActivityResultContracts.RequestPermission(),
Expand Down

0 comments on commit 9faa09e

Please sign in to comment.