-
Notifications
You must be signed in to change notification settings - Fork 4
LINK
Jeff Olajos edited this page Oct 28, 2024
·
18 revisions
<LINK/> : ViewableWidget
The <LINK/> widget creates a clickable wrapper around one or more child widgets.
Name | Type | Default | Description | Req |
---|---|---|---|---|
layout | string | column | Fixed. Cannot be changed. | |
enabled | bool | true | Whether or not you can click the link. | |
url | string | If provided, the url is opened (launched) when the linked is clicked. |
Name | Description |
---|---|
onclick | A list of ; separated event's to evaluate and execute on click. Fires after the url (if provided) is lauched |
onlongpress | A list of ; separated event's to evaluate and execute on a long press
|
ondoubletap | A list of ; separated event's to evaluate and execute on double click
|
<FML title="LINK (example1)" linkable="true" layout="row" halign="around">
<LINK url="mailto:[email protected]" onclick="alert('Clicked')" ondoubletap="alert('Double Clicked')" onlongpress="alert('Long Press')">>
<COL halign="center" valign="center">
<ICON icon="email_outlined" size="30"/>
<BOX height="20" width="0"/>
<TXT value="[email protected]" />
</COL>
</LINK>
<LINK url="tel:16133406481">
<COL halign="center" valign="center">
<ICON icon="local_phone_outlined" size="30"/>
<BOX height="20" width="0"/>
<TXT value="+1.613.340.6481" />
</COL>
</LINK>
<LINK onclick="open('https://discord.gg/NEXAXmNXTZ')">
<COL halign="center" valign="center">
<ICON icon="discord" height="30" />
<BOX height="20" width="0"/>
<TXT value="FML Discord"/>
</COL>
</LINK>
</FML>
Framework Markup Language is an open source programming language created by AppDaddy Software Solutions Inc. FML and is licensed under a fair source license agreement and is maintained by a community of developers.
- Quick Start
- Widget Structure
- Layout Basics
- Config
- Navigation
- Authentication
- Server Configuration
- Offline Use
- Resource Guides
-
<FML/>
- <BOX/>
- <CHART/>
- <COLUMN/>
- <DRAWER/>
- <FOOTER/>
- <FORM/>
- <GRID/>
- <HEADER/>
- <LIST/>
- <MAP/>
- <WINDOW/>
- <PAGER/>
- <ROW/>
- <SCROLLER/>
- <SPLITVIEW/>
- <STACK/>
- <TABLE/>
- <TABVIEW/>
- <TREEVIEW/>
- <WEBVIEW/>