File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
dates/src/main/java/org/openedx/dates/presentation/dates Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,8 @@ fun DatesScreen(
134134 LazyColumn (
135135 modifier = contentWidth.fillMaxSize(),
136136 state = scrollState,
137- contentPadding = PaddingValues (bottom = 48 .dp)
137+ contentPadding = PaddingValues (bottom = 48 .dp, top = 24 .dp),
138+ verticalArrangement = Arrangement .spacedBy(16 .dp)
138139 ) {
139140 uiState.dates.keys.forEach { sectionKey ->
140141 val dates = uiState.dates[sectionKey].orEmpty()
@@ -144,7 +145,6 @@ fun DatesScreen(
144145 if (isHavePastRelatedDates) {
145146 item {
146147 ShiftDueDatesCard (
147- modifier = Modifier .padding(top = 12 .dp),
148148 isButtonEnabled = ! uiState.isShiftDueDatesPressed,
149149 onClick = {
150150 onAction(DatesViewActions .ShiftDueDate )
You can’t perform that action at this time.
0 commit comments