Skip to content

Commit

Permalink
Improve padding
Browse files Browse the repository at this point in the history
  • Loading branch information
vtalos committed Dec 28, 2024
1 parent 9044621 commit 3f561ce
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ fun CreateApplicant() {
Row(
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 32.dp),
.padding(bottom = 16.dp),
horizontalArrangement = Arrangement.spacedBy(16.dp)
) {
OutlinedTextField(
Expand Down Expand Up @@ -149,7 +149,7 @@ fun CreateApplicant() {
textStyle = LocalTextStyle.current.copy(textAlign = TextAlign.Left),
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 32.dp)
.padding(bottom = 16.dp)
.then(fieldModifier),
shape = fieldShape,
leadingIcon = {
Expand All @@ -170,7 +170,7 @@ fun CreateApplicant() {
icon = Icons.Default.Person,
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 32.dp)
.padding(bottom = 16.dp)
.clip(fieldShape)
.then(fieldModifier)
)
Expand All @@ -188,7 +188,7 @@ fun CreateApplicant() {
},
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 32.dp)
.padding(bottom = 16.dp)
.height(120.dp),
shape = fieldShape,
minLines = 4
Expand All @@ -203,7 +203,7 @@ fun CreateApplicant() {
icon = Icons.Default.LocationOn,
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 32.dp)
.padding(bottom = 16.dp)
.clip(fieldShape)
.then(fieldModifier)
)
Expand All @@ -217,7 +217,7 @@ fun CreateApplicant() {
icon = Icons.Default.Star,
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 32.dp)
.padding(bottom = 16.dp)
.clip(fieldShape)
.then(fieldModifier)
)
Expand All @@ -227,7 +227,7 @@ fun CreateApplicant() {
onClick = { /* Search action to be implemented */ },
modifier = Modifier
.fillMaxWidth()
.padding(top = 16.dp),
.padding(bottom = 32.dp),
shape = fieldShape
) {
Text(stringResource(R.string.submit))
Expand Down

0 comments on commit 3f561ce

Please sign in to comment.