React Native Buttons use title, not label.

This commit is contained in:
kameyin 2017-02-08 22:32:26 -05:00 committed by Satyajit Sahoo
parent a01e88f7c4
commit fe968c2003

View File

@ -15,7 +15,7 @@ class MyHomeScreen extends React.Component {
return (
<Button
onPress={() => this.props.navigation.navigate('Profile', {name: 'Lucy'})}
label="Go to Lucy's profile"
title="Go to Lucy's profile"
/>
);
}