Hello everyone.
When I’m running my app (that contains the DropDown feature) on my Android Phone, the dropdowns that apears from DropDown menu is really small, even tiny. I tried to set resizeTextForBestFit and resizeTextMinSize/maxSize + change Rect.height of ViewPort (where the dropdowns placed) but it doesn’t work. The Scroll Rect on Dropdown List controlling the size. So how can I fix this issue?

Single equal is an assignment operator, double equal is comparing. int num = 10; if (num == 10) return true; // returns true since num is equal to 10
– Landern