mzgreen
10/25/2019, 4:54 AMgildor
10/25/2019, 5:01 AMAre there Compose Components that are completely independent of current View system that are written completely from scratch using Compose?Yes, most of them, except very complex like WebView and MapView
mzgreen
10/25/2019, 5:07 AMgildor
10/25/2019, 5:35 AMusing Views under the hoodsThey do not use Views under the hood, it’s just a way to render Android view as part of Composable components
we need a mechanism that can do it in the opposite way View->ComposeIt’s already supported on some level, at least some exdperiments with it, you can find adapters on official Compose samples
louis993546
10/25/2019, 6:36 AMView -> Compose
means you lost a lot of the goal of “not relying on `View`” (e.g. that custom view has it’s source of truth) might be gone. The existing mechanism of View -> Compose
seems to be really really really only intended for stuff that uses SurfaceView
.gildor
10/25/2019, 6:38 AMmzgreen
10/25/2019, 6:43 AMromainguy
10/25/2019, 8:03 AMmzgreen
10/25/2019, 9:47 AMtieskedh
10/25/2019, 10:18 AMgildor
10/25/2019, 10:19 AMtieskedh
10/25/2019, 10:27 AMmzgreen
10/25/2019, 10:27 AMtieskedh
10/25/2019, 10:28 AMromainguy
10/25/2019, 11:25 AMgildor
10/25/2019, 11:26 AMmzgreen
10/25/2019, 11:58 AMFudge
10/25/2019, 12:12 PMgildor
10/25/2019, 12:13 PMRyan Mentley
10/25/2019, 7:47 PMmzgreen
10/25/2019, 7:49 PMRyan Mentley
10/25/2019, 11:09 PMAndroidComposeView
mzgreen
10/26/2019, 6:32 AM