When using objects which contain text, such as a button or label, how can the text be dynamically sized in order to better keep text of different lengths within the viewable area?
For example if a Label
within a Cell
of a CircleListView
of a CirclePage
and the text becomes too long, it will easily fall out of view:
For context to what im looking for, in Android I am able to give an object either an autoSizeMinTextSize
and/or autoSizeMaxTextSize
tags which will automatically resize the font size based on the text length of the object.
This allows text of unknown lengths to be better kept on the screen.
How can this be done with in a Tizen.Net application, using CircularUI
elements like Button
or Label
or with Xamarin.Forms in general?