APSL / react-native-keyboard-aware-scroll-view

A ScrollView component that handles keyboard appearance and automatically scrolls to focused TextInput.
MIT License
5.24k stars 643 forks source link

FlashList is supported? #577

Open jtvargas opened 4 months ago

jtvargas commented 4 months ago

Like the title says,

Do I need to do any other change to support FlashList using the HOC function? because I have this code but the Keyboard events logic looks like is not working, I'm not able to see the keyboard aware behavior:

const config = {
  enableOnAndroid: true,
  enableResetScrollToCoords: false,
  enableAutomaticScroll: true,
  extraScrollHeight: 80,
  viewIsInsideTabBar: true,
};

const FlashListKeyboardAware = listenToKeyboardEvents(config)(FlashList);