react-native-android-kit
react-native-android-kit copied to clipboard
Scoll not smooth
When i went to another screen and come back scroll not working smoothly in TabLayoutAndroid
`<View style={styles.parentContainer}> <TabLayoutAndroid style={{height: 56}} backgroundColor='#6c1aa0' indicatorTabColor='#00bcd4' indicatorTabHeight={2} scrollable={false} center={false}>
<TabLayoutAndroid.Item
text='Lessons'
textSize={16}
textColor="#ebcbff"
selectedTextColor='#ffffff'>
<Lessons navigator={this.props.navigator} lessons={this.props.lessons}/>
</TabLayoutAndroid.Item>
<TabLayoutAndroid.Item
text='Activity'
textSize={16}
textColor="#ebcbff"
selectedTextColor='#ffffff'>
<Activity navigator={this.props.navigator} assignments={this.props.assignments}/>
</TabLayoutAndroid.Item>
<TabLayoutAndroid.Item
text='Project'
textSize={16}
textColor="#ebcbff"
selectedTextColor='#ffffff'>
{/*<Project navigator={this.props.navigator}/>*/}
</TabLayoutAndroid.Item>
</TabLayoutAndroid>