15 |
16 | This is an example Gatsby site build with{' '}
17 |
18 | gatsby-plugin-react-native-web
19 |
20 | , showing how to use existing ReactNative libraries that support RNW to
21 | build a static website.
22 |
23 |
24 | If you want to contribute/modify the examples: {' '}
25 |
26 | it's all there
27 |
28 |
29 |
30 | Note: the fact that a site is static does not mean you can't build highly
31 | interactive things and retrieve dynamic data from apis. See this more
32 | dynamic example:{' '}
33 |
34 | https://gatsby-rnw-todos.netlify.com/
35 |
36 |
37 |
38 | Built by{" "}
39 |
40 | @sebastienlorber
41 |
42 |
43 |
44 | )
45 |
46 | export default IndexPage
47 |
--------------------------------------------------------------------------------
/examples/uikits/src/pages/kittens.js:
--------------------------------------------------------------------------------
1 | import React, { useState } from 'react'
2 | import { Button } from 'react-native-ui-kitten'
3 | import KittensSelectExample from '../components/kittens/KittensSelectExample'
4 | import KittensDatepickerExample from '../components/kittens/KittensDatepickerExample'
5 | import Example from '../components/example'
6 | import Layout from '../components/layout'
7 |
8 | const ButtonExample = () => (
9 |