Mahmoud Ali

Results 33 issues of 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...

bug

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...

bug

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?

query-area

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.

query-area

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...

query-area

infrastructure

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?