B4J Question [ABMaterial] [Solved]Font-Awesome and extra MDI Icons for Menu

Philip Chatzigeorgiadis

Active Member
Licensed User
Longtime User
In my sidebar menu, I want to use other icons than those mentioned in the ABMaterial demo website.

Although the demo suggests using page.UseFontAwesome = true, this is not an option in ABMaterial 4.03.

Similarly, it seems that I can only use the MDI icons listed in the ABMaterial website, which is a small subset of the complete MDI list of icons here: https://cdn.materialdesignicons.com/1.1.34/

Is there a way to use these icons (font-awesome and full list of MDI) in my sidebar, or should I wait for ABMaterial 4.25?

Thanks.
 

alwaysbusy

Expert
Licensed User
Longtime User
You should be able to use Awesome icons (the UseFontAwesome param is outdated and should be updated in the demo). ABM can recognize font awesome icons automatically.

For font awesome icons, make sure you use the 'fa ' prefix in the icon name:

e.g.
B4X:
page.NavigationBar.AddSideBarItem("MDL5", "Font awesome item", "fa fa-expand", "")
 
Upvote 0
Top