Isacco Bosio

Results 14 comments of Isacco Bosio

Hi, as it said in [their guide](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/TIPS_AND_TRICKS.md#momentum), you should put those props ``` ... enableMomentum={false} decelerationRate={0.9} ... ``` Hope it helps. This is how I fix this problem

I found a salution.. or something In Month.tsx I put this code ``` js const isFirstWeek = weekGrid === 0 const realDayIndex = emptyDays - dayIndex -1 // put a...

> ``` > post_install do |installer| > installer.generated_projects.each do |project| > project.targets.each do |target| > target.build_configurations.each do |config| > config.build_settings['CODE_SIGN_IDENTITY'] = '' > end > end > end > end...

> add this to your package.json > > ``` > "resolutions": { > "react-native-redash": "16.1.1" > }, > ``` > > and use yarn. Thanks for the answer. But it...

Thanks a lot for this solution > > > I solved it thanks to your help :) > > > > > > How did you fix it? > >...

I'm currently having the same issue with - react-native-tab-view: 3.5.2 - @react-navigation/native: 6.1.18

Inside `node_modules/react-native-keyboard-controller/src/components/KeyboardAwareScrollView/index.tsx` there is this piece of code: ```jsx const view = useAnimatedStyle( () => enabled ? { // animations become choppy when scrolling to the end of the `ScrollView`...

Hi @kirillzyusko , thank you very much for the answer! The situation is clear. I understand that the Reanimated.View is essential for the purpose of this library. At this moment...

>Do you want it to be like currentKeyboardFrameHeight.value === 0 ? 0 : currentKeyboardFrameHeight.value + 1? I don't know if this might be a solution. I need to try it....