Skip to content

Commit

Permalink
Remove padding
Browse files Browse the repository at this point in the history
  • Loading branch information
simosathan9 committed Jan 11, 2025
1 parent 02cb345 commit d868ed9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ fun ApplicantProfile(
)
}
) { paddingValues ->
Column(modifier = Modifier.padding(35.dp).padding(paddingValues)) {
Column(modifier = Modifier.padding(0.dp).padding(paddingValues)) {
val context = LocalContext.current
val profileViewState by profileViewModel.profileViewState.collectAsState()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ fun CreateApplicant(
)
}
) { paddingValues ->
Column(modifier = Modifier.padding(35.dp).padding(paddingValues)) {
Column(modifier = Modifier.padding(0.dp).padding(paddingValues)) {
var name by remember { mutableStateOf("") }
var email by remember { mutableStateOf("") }
var phoneNumber by remember { mutableStateOf("") }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ fun ResultsScreen(
)
}
) { paddingValues ->
Column(modifier = Modifier.padding(35.dp).padding(paddingValues)) {
Column(modifier = Modifier.padding(0.dp).padding(paddingValues)) {
Row(
modifier = Modifier
.fillMaxWidth()
Expand Down

0 comments on commit d868ed9

Please sign in to comment.