We are using the acr.UserDialogs library to display Toasts on our Xamarin.Forms app. The messages are never more than a sentence long. In Android, the messages display fine, and the Toast will adjust size for the length of the message. Our QA tech realized that in iOS the messages were being truncated.
For example, the Toast
Title: "Connection Restored"
Message: "Your connection has been reestablished"
is truncated to
Title: "Connection"
Message: "Your connection has been"
when displayed on the device.
I tried changing the message to "Reconnected!" and all we see is "Reconnect"
The simulator on my Mac does not have this issue. I can see the whole message.