Colton Idle
04/07/2021, 12:26 AMRender Problem
java.lang.IllegalStateException: No RollerToasterColorPalette provided at com.rollertoaster.app.theme.ThemeKt$AmbientRollerToasterColors$1.invok
Colton Idle
04/07/2021, 12:27 AM@Preview
@Composable
fun MyPrev() {
Column(
modifier = Modifier
.background(color = RollerToasterTheme.colors.main_1)
.fillMaxWidth(1F)
) {
Text("asdf")
}
}
Works:
@Preview
@Composable
fun MyPrev() {
Column(
modifier = Modifier
.fillMaxWidth(1F)
) {
Text("asdf")
}
}
Albert Chang
04/07/2021, 12:38 AMColton Idle
04/07/2021, 12:40 AMjim
04/07/2021, 2:23 AMChris Sinco [G]
04/07/2021, 5:06 AMColton Idle
04/07/2021, 8:12 AMChris Sinco [G]
04/07/2021, 5:27 PMColton Idle
04/07/2021, 7:35 PMChris Sinco [G]
04/07/2021, 7:49 PM