Jordan Hansen
Jordan Hansen
There is now a sample in the demo app on how to get closed captions for video playback. See Commit c0f4bc3
I have a case where I have a small memory device and my json exceeds my memory space. Allowing me to decode/encode in chunks using tokens would allow me to...
The ability to parse Json or other formats token by token would be huge for low memory devices. I have some large files that don't fit entirely into memory. This...
@pdvrieze Ideally the solution would be a complete `peek`, `nextName`, `nextValue`, `skip`, `beginObject/Array`, `endObject/Array`. With these I can manually parse the file. Ideally with this then you could pass a...
Support for scrolling would be extremely helpful. Example ```kotlin Box(modifier = modifier.verticalScroll(rememberScrollState())) { TextFlow( text = uiModel.content, modifier = modifier .padding(16.dp), style = MaterialTheme.typography.bodyMedium.copy(color = MaterialTheme.colorScheme.onSurface), ) { Polaroid( imageModel...
Please provide more details.