Hi experts,
I am currently playing around with my UI5 Applications and try to show them in my Fiori Launchpad.
But I want to try out a new kind of tile. So what I did is, created a new View in my project called CustomTile and filled it with some test data:
<mvc:View
controllerName="customtilecustomtile.controller.View1"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:mvc="sap.ui.core.mvc"
displayBlock="true"
xmlns:m="sap.m"
xmlns:micro="sap.suite.ui.microchart">
<m:GenericTile class="sapUiTinyMarginBegin sapUiTinyMarginTop tileLayout" header="Sales Fulfillment Application Title"
subheader="Subtitle" press="press">
<m:TileContent>
<m:content>
<micro:RadialMicroChart percentage="100" valueColor="Good"/>
</m:content>
</m:TileContent>
</m:GenericTile>
</mvc:View>
Nothing special. But now I want to show this tile in my Fiori Launchpad instead of the default one.
This should be shown:

This is tile is shown now in the Fiori Launchpad:

Anyone know how to reach this? I played around with the Tile-Settings, but didn't came to any result yet:

I hope someone can help me :-)