Pierre Gambaud

Results 4 comments of Pierre Gambaud

> Downgrading to 7.6.1 fixes the start sizing issues for me. Thanks for your workaround, as the bug is still in 8.1.0 😬

@iyadztabika `starStyle` did the trick for me. This prop is not mentioned in the doc but was added in 2021 (see https://github.com/Monte9/react-native-ratings/issues/53). https://github.com/Monte9/react-native-ratings/blob/854099c8b4a9b3215d51f8d60dff793e5775f96a/src/components/Star.tsx#L21 ``` ```

> Haven't tried this myself yet, but does using the useFocusEffect work? > > ``` > useFocusEffect( > useCallback(() => { > // focus the text input here > },...

> > found a fix: You'll need to set `keyboardVerticalOffset`. it seems that the `KeyboardAvoidingView` gets confused when there's a `Modal` open > > @burabure - please explain more... having...