嗨我有簡單的發佈列表,並希望瀏覽每個帖子到他們的頁面。我正在使用react-navigation,但它看起來不適用於CardItem。我該如何解決它?這裏是代碼。所有配置都在MainNavigator中完美完成。如何使用react-navigation導航CardItem?
<Card>
<CardItem>
<Left>
<Thumbnail source={{uri: 'Image URL'}} />
<Body>
<Text>NativeBase</Text>
<Text note>GeekyAnts</Text>
</Body>
</Left>
</CardItem>
<CardItem cardBody
onPress={() => this.props.navigation.navigate('post')}
>
<Image source={{uri: 'Image URL'}} style={{height: 200, width: null, flex: 1}}/>
</CardItem>
<CardItem>
<Left>
<Button transparent>
<Icon active name="thumbs-up" />
<Text>12 Likes</Text>
</Button>
</Left>
<Body>
<Button transparent>
<Icon active name="chatbubbles" />
<Text>4 Comments</Text>
</Button>
</Body>
<Right>
<Text>11h ago</Text>
</Right>
</CardItem>
</Card>
它沒有顯示任何錯誤,只是當你點擊它不導航。
你提供'在誰呈現navigation'你可以做到這一點的' Card'? –
這將是很好,如果分享你的錯誤也讓我們得到確切的問題。 –
它不顯示任何錯誤消息只是不導航 – Syuzanna