FAQ
Common questions and troubleshooting for Native UI
Do I need to configure native UI frameworks manually in build settings?
Why do my dialogs look different on iOS vs Android?
Can I add more than 3 buttons to an alert dialog?
How do I get the text from an input field in an alert dialog?
dialog.AddButton("Submit", (inputTexts) =>
{
string userInput = inputTexts[0]; // First input field
string secondInput = inputTexts[1]; // Second input field (if exists)
});Why isn't my date picker showing the date I set with SetInitialDate?
Can I customize the appearance of native dialogs (colors, fonts)?
What's the difference between AddButton and AddCancelButton?
How do I validate text input from alert dialogs?
Why doesn't my date picker enforce the minimum date?
Can I show multiple dialogs at the same time?
How do I localize dialog button text?
Are there any example use cases for DatePicker?
Where can I see all Native UI features in action?
Do dialogs work in landscape and portrait modes?
Last updated