José Pereira
José Pereira
I think that the URL to push the symbols is: https://www.nuget.org/api/v2/symbolpackage/ So it might be the case that you migth need to set the `settings.Source = "https://www.nuget.org/api/v2/symbolpackage/"` before trying to...
Any news on this?
ok. That is weird. I have some pipelines configured in AzureDevOps, that are delivering packages with symbols to nuget. When looking at the logs of the execution I see the...
@mattleibow @AndersMad @ziriax , I to have this problem with different images. Attaching them to for testing [images.zip](https://github.com/mono/SkiaSharp/files/13237849/images.zip)
I have the same issue, when placing the DrawingView inside a CollectionView. Problem only on iOS. Android works great. It looks like the swipping event is being passed to from...
I solved this problem, by addding the `ios:ScrollView.ShouldDelayContentTouches="false"` to the ScrollView that contains the DrawingView: ```xaml ... ``` more info here: https://learn.microsoft.com/en-us/dotnet/maui/ios/platform-specifics/scrollview-content-touches?view=net-maui-8.0
@mnidhk The `TableView` in .Net MAUI is mapped to a `UITableView` for iOS (see [here](https://github.com/dotnet/maui/blob/cfc5482af19558365f01625a4bb47a4f075d9c8e/src/Controls/src/Core/Compatibility/Handlers/TableView/iOS/TableViewRenderer.cs#L12)). The `UITableView` is a subclass of `UIScrollView`, which means it has the same capabilities, like...
@mnidhk FYI, I've wrote a blog post with an explanation of a possible solution for this problem, for ScrollView and TableView. https://medium.com/medialesson/how-to-use-a-drawingview-inside-a-scrollable-layout-in-net-maui-2a080e32cdb4
I have the same behavior, but for Android... :( .Net MAUI 8 and Mopup 1.3.1
Yup, there's already some work being done in this direction. I've created a new branch 'feature/item_template_support' that can be used to develop this feature. Maybe @david-d-le can PR the code...