-
Notifications
You must be signed in to change notification settings - Fork 4
FOOTER
Jeff Olajos edited this page Oct 28, 2024
·
7 revisions
<FOOTER/> : <BOX/>
The <FOOTER/> widget is used to display fixed content at the bottom of an <FML/> page. There can be only one <FOOTER/> per page. Page <FOOTER/>'s are fixed to the bottom of the page and do not scroll.
If your <FOOTER/> is used in several <FML/> pages, consider using the <INCLUDE/> widget to avoid duplicate code. This allows you to write the code once and use it in other templates.
| Name | Type | Default | Description | Req |
|---|---|---|---|---|
| layout | string | stack | Default layout inside the box, Valid entries are "row", "column", or "stack" | |
| height | int | 50 | The height of the footer |
<FOOTER height="100" layout="row" color="#0000FF66" valign="center">
<BUTTON type="outlined" onclick="showtemplate()" margin="10">
<ICON icon="preview_rounded"/>
<TEXT label="Show Template"/>
</BUTTON>
<TEXT italic="true" size="10" color="{THEME.onsurface}" label="Flutter Markup Language is a Fair-Source and publicly available community product of"/>
<ICON icon="appdaddy"/>
<TEXT italic="true" size="10" color="{THEME.onsurface}" label="AppDaddy Software Solutions Inc. To get started using FML visit"/>
<PAD right="4"/>
<LINK onclick="open('https://fml.dev')">
<TEXT size="10" color="blue" label="***FML.DEV***"/>
</LINK>
</FOOTER>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/>

Important Concepts