react-native-android-kit icon indicating copy to clipboard operation
react-native-android-kit copied to clipboard

Scoll not smooth

Open moorthysubu opened this issue 8 years ago • 0 comments

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>
         

moorthysubu avatar May 19 '17 13:05 moorthysubu