如何使用react-native创建下拉菜单?
如何显示/隐藏内容?
答案 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>
);
}