Skip to content

WEBVIEW

Jeff Olajos edited this page Nov 11, 2024 · 13 revisions

<WEBVIEW/> : ViewableWidget

The <WEBVIEW/> or <IFRAME/> (legacy) widget is used to display web content.

Attributes

Name Type Default Description Req
url string null The url of the web page

Examples

Example #1 : a simple webview showing 2 inline frames

img

<FML center="true" layout="column">
	
	<BOX expand="false" bordercolor="red" radius="10" margin="10">
		<WEBVIEW url="https://fml.dev" width="500" height="300"/>
	</BOX>
	
	<BOX expand="false" bordercolor="red" radius="10" margin="10">
		<WEBVIEW url="https://appdaddy.co" width="500" height="300"/>
	</BOX>
	
</FML>

logo See it in Action

Other Widgets You May Find Useful:

Clone this wiki locally