Piotr Krzemiński
11/02/2022, 6:39 PMVampire
11/02/2022, 6:42 PMPiotr Krzemiński
11/02/2022, 7:02 PMashmelev
11/02/2022, 9:24 PMBig Chungus
11/02/2022, 10:34 PMBig Chungus
11/02/2022, 10:35 PMBig Chungus
11/02/2022, 10:35 PMBig Chungus
11/02/2022, 10:36 PMPiotr Krzemiński
11/03/2022, 7:03 AMCfW does not have material support
that’s weird, I’m browsing this example and true it’s configured only for Android and desktop, but I see api(compose.material) in dependencies for
commonMain
, MaterialTheme configured, and the desktop version running fine and displaying Material components - isn’t it easily portable to web target? what stops us from using Material components on web, what's the technical limitation here?Piotr Krzemiński
11/03/2022, 7:34 AMPiotr Krzemiński
11/03/2022, 7:34 AMBig Chungus
11/03/2022, 7:42 AMBig Chungus
11/03/2022, 7:43 AMPiotr Krzemiński
11/03/2022, 7:57 AMBig Chungus
11/03/2022, 8:03 AMBig Chungus
11/03/2022, 8:04 AMPiotr Krzemiński
11/04/2022, 7:08 AMMike Dawson
11/04/2022, 3:38 PMval PersonDetailScreen = FC<Props>() {
val di = useContext(DIContext)
val viewModel = useViewModel { DummyViewModel() }
val dummyUiState: DummyUiState by viewModel.uiState.collectAsState(DummyUiState())
Typography {
+ "Hello ${dummyUiState.person.firstNames}"
}
}
Mike Dawson
11/04/2022, 3:40 PM