Skip to content

Instantly share code, notes, and snippets.

@rajatgeekyants
Created August 4, 2017 07:14
Show Gist options
  • Save rajatgeekyants/90aa0172b5a0b6b39e78bad496a49ae8 to your computer and use it in GitHub Desktop.
Save rajatgeekyants/90aa0172b5a0b6b39e78bad496a49ae8 to your computer and use it in GitHub Desktop.
class App extends React.Component {
render() {
return (
<View>
<View>
<Text>Header</Text>
</View>
<ScrollView>
<Button title="Awesome Button" />
</ScrollView>
<View>
<Text>I am the footer</Text>
</View>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment