1import * as React from 'react';
2import { Button } from 'react-native';
3
4import { Page, Section } from '../components/Page';
5import Colors from '../constants/Colors';
6
7export default function ButtonScreen() {
8  return (
9    <Page>
10      <Section title="Default">
11        <Button title="Hello Universe" onPress={() => {}} />
12      </Section>
13      <Section title="Custom Color">
14        <Button color={Colors.tintColor} title="Blurple" onPress={() => {}} />
15      </Section>
16      <Section title="Disabled">
17        <Button disabled title="Disabled" onPress={() => {}} />
18      </Section>
19    </Page>
20  );
21}
22
23ButtonScreen.navigationOptions = {
24  title: 'Button',
25};
26