Skip to content

Commit

Permalink
Merge pull request #91 from anrouxel/adding_padding
Browse files Browse the repository at this point in the history
adding padding
  • Loading branch information
Lexonchik authored Feb 29, 2024
2 parents 1572e10 + 6055284 commit b34c9ad
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ fun DoctorHome(
val doctors by viewModel.doctors.observeAsState(emptyList())
val isLoading = remember { mutableStateOf(false) }

Column {
Column (
modifier = Modifier.padding(10.dp)
){
ReusableOutlinedTextField(
value = doctor.value,
onValueChange = {
Expand Down

0 comments on commit b34c9ad

Please sign in to comment.