Micko Cabacungan
06/13/2023, 6:36 PM@Composable
fun MainScreen() {
val data: List<Viewer> ...list of viewers
Row() {
data.forEach {
// this seems to not resize itself if there are two or more of this widget
// how can I make sure that n number of ViewerCameraWidget gets resized correctly
// to fit on screen?
ViewerCameraWidget() //uses android view
}
}
}
Zun
06/13/2023, 8:00 PMMicko Cabacungan
06/13/2023, 8:06 PM