Oleksandr Karpovich

Results 114 comments of Oleksandr Karpovich

the list of examples is here https://github.com/JetBrains/compose-jb/tree/master/tutorials/Web#examples

```kotlin val inputState = remember { mutableStateOf("Some Text") } TextArea { value(inputState.value) onInput { event -> println(event.value) } } ``` This is how TextArea can take user's input. (https://github.com/JetBrains/compose-jb/blob/master/tutorials/Web/Controlled_Uncontrolled_Inputs/README.md)

closing. It has been already fixed https://github.com/JetBrains/androidx/pull/215

Hi @Ayfri, Thank you for your contribution! Could you please add unit tests for all new APIs in `.../web/core/src/jsTest`? Look at `TransformTests` as an example. We simply verify that the...

@Ayfri > 3\. `height 1s 0.5s, width 1s 0.5s, width 2s` by just adding the property, behaves same as 1 but has a repetition. I think 3rd variant is okay,...

fixed in https://github.com/JetBrains/compose-jb/issues/1950

reproduced with 1.2.0-alpha01-dev778