Mahmoud Ali
Mahmoud Ali
The BindableProperties is a [Dictionary](https://github.com/akamud/Xamarin.Forms.TestingLibrary/blob/main/src/Xamarin.Forms.TestingLibrary/Diagnostics/DebugElement.cs#L15), so any property with the same name added will break the debug. This happens right now with the "Bound" property, if the control has multiple...
The Bound property may appear multiple times, so maybe it is not useful rendering it in the debug text. Right now it might break the app because the BindableProperties is...
https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/sourcelink
Probably should load FormattedText. How does it look like if a Label has a Text property and a FormattedText property filled?
When looking for elements, it is common to narrow the search within an element, so you can correctly get the needed element when there is more than one available.
It will be needed to handle the collection filling manually, since it is only done in the platform code. https://github.com/xamarin/Xamarin.Forms/blob/5.0.0/Xamarin.Forms.Platform.iOS/CollectionView/TemplatedCell.cs ```csharp if (view is CollectionView cv) { foreach (var item...
In my tests, using a special App to allow overriding dependencies was needed. How can we make this clear? Is a documentation enough? Can we help the user somehow?