AutomationProperties.IsInAccessibleTree
Indicates whether the element is available to an accessible application
How to use this component
The AutomationProperties.IsInAccessibleTree attached property is a boolean that determines if the element is accessible, and hence visible, to screen readers. It must be set to true to use the other accessibility attached properties.
More info here – https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/accessibility/automation-properties#automationpropertiesisinaccessibletree
Code Resource
<Entry AutomationProperties.IsInAccessibleTree="true" />
var entry = new Entry();
AutomationProperties.SetIsInAccessibleTree(entry, true);