Roni Castro

Results 5 comments of Roni Castro

This flag `shouldDisableKeyboardAvoidingView` temporarily solves the problem in storybook 5.3.x, as not having a KeyboardAvoidingView is not a big problem for us, and brings fewer problems than not showing the...

I've run the library example bare app on the Android API 29 emulator and it's not scrolling in any snapPoint: https://user-images.githubusercontent.com/95294257/171505928-b9cfc7c7-936e-4643-be5b-1432fb9afdd6.mov

> import React, { useCallback, useRef, useMemo } from 'react'; > import { StyleSheet, View, Text, Button } from 'react-native'; > import BottomSheet from '@gorhom/bottom-sheet'; > import { ScrollView }...

`retainLines` did not work for me. Temporarily I'm fixing this by adding `${'\n'}` and then running prettier --write to fix the issue. https://user-images.githubusercontent.com/95294257/208218832-1ebdb9b9-657a-4daf-aab1-f8be7fb11fe5.mov

I solved this by using `moduleNameMapper`, where `@fta/components-token` is the name of a package of my workspace and `../token/src` is the path to its index: ```js moduleNameMapper: { '@fta/components-token': '../token/src',...