UNPKG

680 BJavaScriptView Raw
1import { COMPONENT_TYPES, FORM_TYPES } from "../core/component-types";
2export const SEED_DATA = {
3 name: "Web View",
4 tag: "WebView",
5 description: "Embed a website into your app",
6 doc_link: "https://docs.expo.io/versions/latest/sdk/video/",
7 code_link: "https://github.com/expo/expo/blob/master/packages/expo-av/src/Video.tsx",
8 category: COMPONENT_TYPES.media,
9 supports_list_render: false,
10 layout: {},
11 props: {
12 source: {
13 label: "Website URL",
14 description: "The URL for the website",
15 editable: true,
16 required: true,
17 value: "https://www.draftbit.com",
18 type: FORM_TYPES.sourceUrl
19 }
20 }
21};
22//# sourceMappingURL=WebView.js.map
\No newline at end of file