Reducing the height of the banner in the drawer

This commit is contained in:
Vitor Pamplona
2023-08-31 13:43:57 -04:00
parent c934a1cdfe
commit 669b33a3e1
@@ -109,7 +109,7 @@ fun DrawerContent(
modifier = Modifier modifier = Modifier
.fillMaxWidth() .fillMaxWidth()
.padding(horizontal = 25.dp) .padding(horizontal = 25.dp)
.padding(top = 100.dp), .padding(top = 70.dp),
scaffoldState, scaffoldState,
accountViewModel, accountViewModel,
nav nav
@@ -162,7 +162,7 @@ fun ProfileContent(
contentScale = ContentScale.FillWidth, contentScale = ContentScale.FillWidth,
modifier = Modifier modifier = Modifier
.fillMaxWidth() .fillMaxWidth()
.height(150.dp) .height(120.dp)
) )
} else { } else {
Image( Image(
@@ -171,7 +171,7 @@ fun ProfileContent(
contentScale = ContentScale.FillWidth, contentScale = ContentScale.FillWidth,
modifier = Modifier modifier = Modifier
.fillMaxWidth() .fillMaxWidth()
.height(150.dp) .height(120.dp)
) )
} }