From efc2b08d7eca1d2664848da5904c655a413eec60 Mon Sep 17 00:00:00 2001 From: Andrei Misiukevich Date: Fri, 1 Nov 2019 01:35:00 +0300 Subject: [PATCH] bump 2.3.6 --- PanCardView.nuspec | 2 +- README.md | 10 ---------- docs/ParentScrollView.md | 3 --- docs/README.md | 2 +- docs/TabsControl.md | 3 +++ 5 files changed, 5 insertions(+), 15 deletions(-) delete mode 100644 docs/ParentScrollView.md create mode 100644 docs/TabsControl.md diff --git a/PanCardView.nuspec b/PanCardView.nuspec index 73c542d..05baa0d 100644 --- a/PanCardView.nuspec +++ b/PanCardView.nuspec @@ -2,7 +2,7 @@ CardsView - 2.3.5 + 2.3.6 CardsView Andrei Misiukevich Andrei Misiukevich diff --git a/README.md b/README.md index 264f3fa..2580698 100644 --- a/README.md +++ b/README.md @@ -210,16 +210,6 @@ https://github.com/AndreiMisiukevich/CardView/tree/master/PanCardView/Processors ## Workarounds --> If you want to put your cardsView/carouselView INTO scroll view, you should to use *ParentScrollView* instead of Xamarin.Forms.ScrollView. Set *VerticalSwipeThresholdDistance* rahter big value on Android.. otherwise sometimes fast scroll gestures can be interpritated as swipe. - --> If you want to put cardsView/carouselView INTO ListView or INTO any another scrollable view you should follow these steps -1) Create your own class and implement IOrdinateHandlerParentView interface (It's needed only for iOS, but do it into shared project) -2) Create the renderer for this class (For Android) - -Check these classes (I implemented it for ParentScrollView. You can use it as example, nothing difficult :)) -https://github.com/AndreiMisiukevich/CardView/blob/master/PanCardView/Controls/ParentScrollView.cs -https://github.com/AndreiMisiukevich/CardView/blob/master/PanCardView.Droid/ParentScrollViewRenderer.cs - -> If you want to put your cardsView/carouselView INTO a ```TabbedPage``` on **Android**: 1) Add an event handler for the ``` UserInteraction ``` event 2) On ``` UserInteractionStatus.Started ```: Disable TabbedPage Swipe Scrolling diff --git a/docs/ParentScrollView.md b/docs/ParentScrollView.md deleted file mode 100644 index d038691..0000000 --- a/docs/ParentScrollView.md +++ /dev/null @@ -1,3 +0,0 @@ -### ParentScrollView - -Control which should be used, if you want to put your carousel/cards INTO scrollView. diff --git a/docs/README.md b/docs/README.md index ee121f8..3406915 100644 --- a/docs/README.md +++ b/docs/README.md @@ -10,4 +10,4 @@ Here you will find detailed documentation on setting up and using the CardsView * [ArrowControl](ArrowControl.md) * [IndicatorsControl](IndicatorsControl.md) * [IndicatorItemView](IndicatorItemView.md) -* [ParentScrollView](ParentScrollView.md) +* [TabsControl](TabsControl.md) diff --git a/docs/TabsControl.md b/docs/TabsControl.md new file mode 100644 index 0000000..b805c19 --- /dev/null +++ b/docs/TabsControl.md @@ -0,0 +1,3 @@ +### TabsControl + +Control which should be used, if you want to build custom "tabbed" screen on CardsView base.