We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have updated package version 6.2.1 to 8.0.0, in that i facing issue with bottom component not displaying in android. In iOS it's working properly.
android:
iOS:
code example:
<ScrollView scrollEnabled={false} keyboardShouldPersistTaps={'always'} contentContainerStyle={{ flexGrow: 1, }}> <Tabs.Container ref={tabContainerRef} initialTabName={initialTabName} pagerProps={{ keyboardDismissMode: "on-drag" }} renderHeader={renderHeader} headerContainerStyle={styles.headerContainerStyle} renderTabBar={renderTabBar} > {routes.length !== 0 && routes.map((item, index) => ( <Tabs.Tab key={index} name={item.key}> <Tabs.ScrollView ref={scrollRef} bounces={false} keyboardShouldPersistTaps={'always'} showsVerticalScrollIndicator={false} > {item.component} </Tabs.ScrollView> {(item.key == "Key") ? <CommentView // my bottom component /> : null } </Tabs.Tab> ))} </Tabs.Container>
Can any one please suggest here?
The text was updated successfully, but these errors were encountered:
Hello, Is there any update for above issue?
Sorry, something went wrong.
No branches or pull requests
I have updated package version 6.2.1 to 8.0.0, in that i facing issue with bottom component not displaying in android. In iOS it's working properly.
android:
iOS:
code example:
<ScrollView
scrollEnabled={false}
keyboardShouldPersistTaps={'always'}
contentContainerStyle={{ flexGrow: 1, }}>
<Tabs.Container
ref={tabContainerRef}
initialTabName={initialTabName}
pagerProps={{ keyboardDismissMode: "on-drag" }}
renderHeader={renderHeader}
headerContainerStyle={styles.headerContainerStyle}
renderTabBar={renderTabBar}
>
{routes.length !== 0 && routes.map((item, index) => (
<Tabs.Tab key={index} name={item.key}>
<Tabs.ScrollView
ref={scrollRef}
bounces={false}
keyboardShouldPersistTaps={'always'}
showsVerticalScrollIndicator={false}
>
{item.component}
</Tabs.ScrollView>
{(item.key == "Key") ?
<CommentView
// my bottom component
/> : null
}
</Tabs.Tab>
))}
</Tabs.Container>
Can any one please suggest here?
The text was updated successfully, but these errors were encountered: