Context:
I'm trying to make an app consisting of a grid of buttons. Some of them have a text larger than it's own width
Problem:
The thing is that XF Button is "wrapping" the text replacing some characters in the middle with ellipsis (...):
[
I would like the text to be wrapped in multiple lines like the text in Labels:
Surfing the internet I found some approaches:
Using a Button and a Label inside a RelativeLayout. The Label overlaps the Button and setting the InputTransparent property to true you can achieve the Button-like control.
Using a Label inside a Layout and handling the Tap Gestures
Using platform-specific code to render the native buttons with a CustomRenderer (I would prefer not to have platform-specific code to show buttons)
The problem with those approaches is that the result doesn't look like a native button or doesn't behave like a native button.
There is an approach that can give both things? A control that looks and behaves like a native button.