Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tabbar height props instead of default #495

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

congnguyen91
Copy link

@congnguyen91 congnguyen91 commented Jul 14, 2021

  • I am using react-native-navigation with bottomTabs with a long form. When the keyboard is visible, the topBar is hidden.
    So I fixed this with tabBarHeight props (a new props instead of the default)
const _KAM_DEFAULT_TAB_BAR_HEIGHT: number = isIphoneX() ? 83 : 49

).

My solution:

import { hasNotch } from 'react-native-device-info';
...
 <KeyboardAwareScrollView
          viewIsInsideTabBar={true}
          tabBarHeight={hasNotch() ? 83 : 64}
          ...

Screen Shot 2021-07-14 at 16 16 13

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant