File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
feature/library/src/main/kotlin/com/ninecraft/booket/feature/library Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import androidx.compose.runtime.Composable
1616import androidx.compose.ui.Alignment
1717import androidx.compose.ui.Modifier
1818import androidx.compose.ui.res.stringResource
19+ import androidx.compose.ui.text.style.TextAlign
1920import androidx.compose.ui.unit.dp
2021import com.ninecraft.booket.core.designsystem.DevicePreview
2122import com.ninecraft.booket.core.designsystem.theme.ReedTheme
@@ -169,12 +170,14 @@ private fun EmptyResult() {
169170 Text (
170171 text = stringResource(R .string.library_empty_book_title),
171172 color = ReedTheme .colors.contentPrimary,
173+ textAlign = TextAlign .Center ,
172174 style = ReedTheme .typography.headline1SemiBold,
173175 )
174176 Spacer (modifier = Modifier .height(ReedTheme .spacing.spacing2))
175177 Text (
176178 text = stringResource(R .string.library_empty_book_description),
177179 color = ReedTheme .colors.contentSecondary,
180+ textAlign = TextAlign .Center ,
178181 style = ReedTheme .typography.body1Medium,
179182 )
180183 }
You can’t perform that action at this time.
0 commit comments