如何使用react-native显示/隐藏内容?

时间:2015-12-23 11:19:46

标签: javascript react-native mobile-development

如何使用react-native创建下拉菜单?

如何显示/隐藏内容?

1 个答案:

答案 0 :(得分:2)

https://github.com/alinz/react-native-dropdown

这将为您提供类似于您要求的下拉菜单。显示/隐藏内容只是决定是否呈现可以通过多种方式完成的内容。

render() {
    let hideableContent;

    if (this.state.shouldRenderContent) {
        hideableContent = <Text>I AM SHOWING</Text>;
    }

    return (
        <View>
            <Text>This doesn't hide</Text>
            {hideableContent}
        </View>
    );
}