React Native Buttons use title, not label.

This commit is contained in:
kameyin
2017-02-08 22:32:26 -05:00
parent d8407493a3
commit 02a1a0dd06

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"
/>
);
}