Native Font Awesome Button

Content Type: Widget
Categories: User Interface

Overview

*** Deprecated *** Use the new Native Font Awesome module instead.

https://marketplace.mendix.com/link/component/119349 

Use Font Awesome in Mendix Native Mobile apps.

Documentation

Demo url

NativeFontAwesomeButton

Use Font Awesome in Mendix Native apps. The widget renders as a button.

Features

  • By default all solid and regular free icons
  • Fork to use a pro license.

Usage

Place this widget on the page where you want to show a Font Awesome icon. The widget renders as a button, it can be styled similar to default buttons.

Adjust styling to your theme

Native pluggable widgets currently cannot access the theme settings of the project they are in. However, it is quite easy to apply your theme on the widget. The test project has an example of this. The widget itself will show as a button with primary color. From the theme a design property is added which allows various button styles. The classes are in NativeFontAwesomeButtonStyles.js and the design property is configured in settings-native.json

You can see this in the demo project.

App reload

During development you may get error messages about icons that could not be found. This happens when the app reloads while on a detail page. The library is not initialized in that case. Just reload the app so it starts at the home page.

Initialization

The Font Awesome library needs to be initialized to allow icons to be referenced by name. This must be done before showing icons. So if you want to use Font Awesome on the home page you need to make sure that the library is initialized before attempting to show an icon.

This initialization step also ensures that the icons are included in the bundle.

This is recommended to use, even if your home page does not (yet) have Font Awesome icons. It would be very confusing if someone just adds an icon and that would break the app.

Supporting entity

Create a non-persistent entity with a boolean flag. Example here: Entity NativePageContext attribute FontAwesomeInitialized.

Home page

On the home page add a dataview with a datasource nanoflow. In that nanoflow, create a NativePageContext with FontAwesomeInitialized set to false

In the dataview, create two containers with conditional visibility on FontAwesomeInitialized

Initialize

In the container with conditional visibility FontAwesomeInitialized=false place the widget with action Initialize. Configure a nanoflow as library loaded action on the widget. In that nanoflow, set FontAwesomeInitialized to true

Initialization done

In the container with conditional visibility FontAwesomeInitialized=true, place the normal page content and use this widget to show icons.

Known issue with action property

Currently, choosing 'Save changes' as action causes an error: Can't find variable: closePage. This is not specific to this widget, it happens to default buttons as well. Until the issue is fixed, use a nanoflow instead.

Releases

Version: 2.0.0
Framework Version: 9.0.2
Release Notes: Mx9 release
Version: 1.2.0
Framework Version: 8.15.1
Release Notes: No functional changes. Updated internal dependencies to match Mx8.15
Version: 1.1.0
Framework Version: 8.2.2
Release Notes: Change documentation to make it more clear how to style the widget.
Version: 1.0.0
Framework Version: 8.2.2
Release Notes: Initial release