Preview
Web-view
2min
The web-view component allows the user to use an URL or pass raw HTML as the preview content.


This example displays a preview after long-pressing the widget
See the full example on GitHub.
long-press-on-widget
web-widget.jigx
1preview:
2 isCompact: false
3 children:
4 - type: component.web-view
5 options:
6 uri: https://www.google.com
7 isTrackingTransparencyRequired: true
8 height: 500


This example displays a preview after long-pressing the list-item on the widget.


This example displays a preview after long-pressing the list-item in the jig. It includes the web-view component as well as the go-to actions.
As you can see in the code snippet, the original list doesn't include the preview. Our onPress action allows us to use the preview that is included in the detail jig.
See the full example of web-longpress-onpress and web-detail on GitHub.
web-view-longpress-onPress
web-detail
1title: Web view preview - onPress
2type: jig.list
3icon: world
4
5header:
6 type: component.jig-header
7 options:
8 height: small
9 children:
10 type: component.image
11 options:
12 title: Activities
13 source:
14 uri: https://images.unsplash.com/photo-1603988363607-e1e4a66962c6?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Njl8fHNwb3J0fGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=900&q=60
15
16datasources:
17 activities:
18 type: datasource.static
19 options:
20 data:
21 - id: 1
22 name: Swimming
23 location: Pool
24 previewDetail: 7pm
25 image: love-it
26 - id: 2
27 name: Tennis
28 location: Court
29 previewDetail: 6am
30 image: rating-star
31 - id: 3
32 name: Exercising
33 location: Gym
34 previewDetail: 5pm
35 image: multiple-neutral-2
36data: =@ctx.datasources.activities
37item:
38 type: component.list-item
39 options:
40 title: =@ctx.current.item.name
41 subtitle: =@ctx.current.item.location
42 rightElement:
43 element: icon
44 icon: =@ctx.current.item.image
45 onPress:
46 type: action.go-to
47 options:
48 linkTo: web-detail
49 parameters:
50 id: =@ctx.current.item.id
51 name: =@ctx.current.item.name
52 location: =@ctx.current.item.location
53 previewDetail: =@ctx.current.item.previewDetail