在屏幕中心实施标签

时间:2017-08-17 17:17:57

标签: react-native react-navigation

我是新来的本地人。我在drawernavigator中实现了stacknavigator。使用这个库 " react-navigation":" ^ 1.0.0-beta.11",

现在我想在中心的屏幕中实现标签。以下图片是我的屏幕的一部分

enter image description here

我不知道如何使用任何库或手动放置视图。

感谢任何帮助。 感谢

1 个答案:

答案 0 :(得分:-1)

好吧,我已经使用react-native-swiper

解决了这个问题

基本上你必须在Swiper中包装你想要的所有视图,根据需要渲染和设置标题样式。

这里有一个我做过的工作案例:

render() {
    return (
        <View style={styles.body}>
            <Swiper
              height={500}
              showsPagination={true}
              loop={false}
              renderPagination={this._renderPagination}
              ref={component => this._swiper = component}>
                <View style={styles.page}>
                    <FlatList data={..} renderItem={item => ...} keyExtractor={(item, index) => index} />
                </View>
                <View style={styles.page}>
                    <FlatList data={...} renderItem={item => ...} keyExtractor={(item, index) => index} />
                </View>
                <View style={styles.page}>
                    <FlatList data={...} renderItem={item => ...} keyExtractor={(item, index) => index} />
                </View>
                <View style={styles.page}>
                    <FlatList data={...} renderItem={item => ...} keyExtractor={(item, index) => index} />
                </View>
            </Swiper>
        </View>
    );
}

_renderPagination(index, total, context) {
    return (
        <View style={styles.pagination}>
            {this._renderPaginationHeaders(index, total, context)}
        </View>
    )
}

_renderPaginationHeaders(index, total, context) {
    let ret = [];
    for (let i = 0; i < total; i++) {
        ret.push(
            <TouchableOpacity key={i} style={{ flex: 1, flexDirection: 'column' }} onPress={() => this._onPageChange(i)}>
                <Text style={[styles.title, { flex: 1, textAlign: 'center', textAlignVertical: 'center' }]}>
                    {this._getSectionText(i)}
                </Text>
                <View style={{ height: 5, backgroundColor: index === i ? 'magenta' : 'transparent' }}></View>
            </TouchableOpacity>
        );
    }

return ret;
}

_onPageChange(targetIndex) {
    const currentIndex = this._swiper.state.index;
    const offset = targetIndex - currentIndex;
    this._swiper.scrollBy(offset);
}

const styles = StyleSheet.create({
  body: {
    flex: 1,
    alignItems: 'center',
    alignSelf: 'center',
    backgroundColor: '#f1f1f1',
  },
  pagination: {
    flexDirection: 'row',
    width: Dimensions.get('window').width,
    height: Header.currentHeight * 0.7,
    backgroundColor: '#2E2E2E',
    paddingLeft: 2,
    paddingRight: 2,
    alignItems: 'center',
    position: 'absolute',
    top: 0,
  },
  page: {
    flex: 1,
    marginTop: (Header.currentHeight * 0.7) + 3
  },
  title: {
    color: 'white'
  },
});