Skip to content

Commit

Permalink
Fix Alignment when the list is not full (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
enthuan authored Apr 16, 2024
1 parent ea9b228 commit 0a47c89
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import fr.paug.androidmakers.ui.MR
import com.androidmakers.ui.model.UISession
import dev.icerock.moko.resources.compose.stringResource
import fr.androidmakers.domain.interactor.ApplyForAppClinicUseCase
import fr.paug.androidmakers.ui.MR
import org.jetbrains.compose.ui.tooling.preview.Preview

@OptIn(ExperimentalFoundationApi::class)
Expand All @@ -43,7 +42,7 @@ fun AgendaColumn(
state = listState,
modifier = Modifier.fillMaxHeight(),
contentPadding = PaddingValues(8.dp),
verticalArrangement = Arrangement.spacedBy(12.dp, Alignment.CenterVertically),
verticalArrangement = Arrangement.spacedBy(12.dp),
horizontalAlignment = Alignment.CenterHorizontally

) {
Expand Down

0 comments on commit 0a47c89

Please sign in to comment.