David Ortinau
David Ortinau
Thanks @nicolas-garcia ! What aspects of the web carousel you linked to did you have trouble with? Looks like maybe the previous/next buttons? I believe the `CurrentIndex` you’re looking for...
> like Netflix or Google PlayStore Can you post an image or recording of what you’re referring to? I wonder if CollectionView with snapping might be more suitable for that.
Thanks @susairajs, the missing content is a [known iOS issue](https://github.com/xamarin/Xamarin.Forms/issues/7466) we are working to resolve. For Pull to Refresh look at [RefreshView](https://github.com/xamarin/Xamarin.Forms/pull/7398). Example on Xappy. https://github.com/davidortinau/Xappy/blob/master/Xappy/Xappy/Content/Scenarios/ProductDetails/ProductDetailsPage.xaml#L133
Page Indicators: https://github.com/xamarin/Xamarin.Forms/issues/6577 RefreshView: https://github.com/xamarin/Xamarin.Forms/issues/6577 Re: XAML Intellisense, is that everything or just CarouselView? > On focus on item Like a special bendable property for the item like “IsCurrent” or...
The iOS issue is known, thx. We have a proposal for IndicatorsView (page indicators). Once we settle on a proposal we'll get that done. We have one initial PR but...
Thanks @icebeam7, this is really great. So you did this twice, once in Spanish and then the following day in English? That's serious dedication. Wow! I just noticed the ScrollTo...
@imuller here is how you should be able to enable large titles on iOS: https://docs.microsoft.com/en-us/xamarin/xamarin-forms/platform/ios/page-large-title
The `ScrollView` isn't resizing as content changes. This is similar to other issues raise and can be worked around by: a. `(ScrollContainer as IView).InvalidateMeasure();` OR b. remove the `ScrollView` in...
This is not `Shell` specific. I'm able to tap outside on Android using `NavigationPage` > `ContentPage`. I also tested a modal page successfully. Version 8.0.40. Android. The scenario that isn't...
@mimeie in addition to what @beto-rodriguez posted, if you put a `ScrollView` inside a `VerticalStackLayout` it will probably take up as much space as it can since `VerticalStackLayout` doesn't constrain...