Kirill Zyusko

Results 540 comments of Kirill Zyusko

@tboba Cool, glad to hear that progress is moving 😎 I just thought to suggest that potentially we can pospone unmounting a component in JS (I guess it's managed by...

Hey @arekkubaczkowski This code introduces breaking changes which I'd like to avoid: |Old|New| |---|-----| ||| If we are using negative offset for `closed`, then it'll be ignored 😔 Maybe we...

Hi @MarceloPrado It seems like `interpolatedScrollTo` has incorrect values. In example app I didn't encounter such behaviour. Try to `console.log` the value and try to understand why it's bigger than...

Hi @MarceloPrado No, I haven't seen this before. I'll try to have a look on your code tomorrow or in nearest days 👍 That's strange - current behaviour looks like...

Hi @MarceloPrado Not exactly this issue, but I've got some requests of what could be improved in the library when you have to deal with avoiding functionality and I was...

@NguyenHoangMinhkkkk this is because everything depends on touch area (if you are using version below `1.5.8`). In `1.6.0` it'll be possible to measure layout without relying on touch area -...

@MarceloPrado I had a look on this problem. It happens because `AwareScrollView` adds `` below all children. Since your content is in center and you add an empty view -...

@VladyslavMartynov10 is it iOS feature to scroll to the input if it's not visible and you are typing something? Or iOS just dispatched onStart/onEnd events from keyboard lifecycle? Basically, if...

@VladyslavMartynov10 I investigated this topic a little bit more and it seems like iOS fires `keyboardWillShow`/`keyboardDidShow` events when user types a first symbol in `TextInput`: https://github.com/kirillzyusko/react-native-keyboard-controller/assets/22820318/f9e53356-0d90-4e06-80ad-f0a3a2ea70ff I don't know why...

> I have to spend some time prototyping. One immediate approach I can think of is to add a top "dummy" view to counter the bottom one in this case....