Input instructions - .NET MAUI
In MAUI, to set the input instructions, you can use the SemanticProperties.Description
attached property.
Usage (C#)
var entry = new Entry();
SemanticProperties.SetDescription(entry, "Your password should be at least 8 characters.");
Usage (XAML)
<Entry
SemanticProperties.Description="Your password should be at least 8 characters." />