CardStackView icon indicating copy to clipboard operation
CardStackView copied to clipboard

📱Tinder like swipeable card view for Android

Results 111 CardStackView issues
Sort by recently updated
recently updated
newest added

Hi, sorry if this has been logged before, but I couldn't find it in search 😄 We're seeing crash reports with the following stack trace: ``` Fatal Exception: java.lang.IllegalArgumentException: Cannot...

Solved the problem of always swiping right when the swipe() function is called! Fork URL: [https://github.com/kzlsnn/CardStackView](https://github.com/kzlsnn/CardStackView) You can check chanelog for details.

When I tried to build, I got a error below. "Execution failed for task ':app:checkDebugAarMetadata'. > Could not resolve all files for configuration ':app:debugRuntimeClasspath'. > Could not find com.yuyakaido.android:card-stack-view:2.3.4. Searched...

Hello, I'm relatively new to Android development and struggle with where to put an onCardClicked method to provide more information about each card. Would appreciate any help.

When items are loaded, then onCardAppeared() is not called for position 0.

Upon configuration changes (e.g. orientation change or returning to app after system killed app) `CardStackView` doesn't remember its old state and thus resets. Basically the `CardStackState` could have been retained...

enhancement

Hey i am facing this error when i remove jcenter from my code Could not resolve com.yuyakaido.android:card-stack-view:2.3.4. Required by: project :app > Could not resolve com.yuyakaido.android:card-stack-view:2.3.4. > Could not get...

Fatal Exception: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean androidx.recyclerview.widget.RecyclerView$ViewHolder.isTmpDetached()' on a null object reference at androidx.recyclerview.widget.RecyclerView$Recycler.recycleView(RecyclerView.java:6361) at androidx.recyclerview.widget.RecyclerView$LayoutManager.removeAndRecycleView(RecyclerView.java:8901) at com.yuyakaido.android.cardstackview.CardStackLayoutManager.update(CardStackLayoutManager.java:268) at com.yuyakaido.android.cardstackview.CardStackLayoutManager.scrollHorizontallyBy(CardStackLayoutManager.java:107) at androidx.recyclerview.widget.RecyclerView.scrollStep(RecyclerView.java:1838) at androidx.recyclerview.widget.RecyclerView$ViewFlinger.run(RecyclerView.java:5302) at android.view.Choreographer$CallbackRecord.run(Choreographer.java:1010) at...

when im swiping thru, the treshhold method does takes effect, but when swiping fast, I.e fling swipe, it doesnt matter wether the treshold sets on 0.1f or 0.9f

When clicking left button card is swiped in right direction, but it is set to left ``` binding.skipButton.setOnClickListener { val settingLeft = SwipeAnimationSetting.Builder() .setDirection(Left) .setDuration(Duration.Normal.duration) .setInterpolator(AccelerateInterpolator()) .build() manager.setSwipeAnimationSetting(settingLeft) binding.stackView.swipe() }...