Questions tagged [swipecardview]

16 questions
6
votes
4 answers

Error inflating class androidx.cardview.widget.CardView on CardStackView library

I am trying to implement this library. The sample code which is written here is in Kotlin but my project was in Java so I tried converting the code from kotlin to java. But I am getting the following error : android.view.InflateException: Binary…
Piyush
  • 492
  • 5
  • 22
2
votes
1 answer

How to add API json response to Swipeable Cards Flutter - https://pub.dev/packages/swipeable_card_stack

I need to show list of profiles on Swipe cards in Flutter. I have used https://pub.dev/packages/swipeable_card_stack flutter library to display the profile cards. When I add static data, multiple cards are shown as expected. But when I am passing my…
Robert S
  • 626
  • 6
  • 13
2
votes
3 answers

How to create a Tinder-like stacked card in flutter?

I want to create swipeable tinder-like cards in flutter which can call some function on left or right swipe but it seems too complicated to do so in Flutter. Right now I have implemented the functionality using list view builder with Dismissible…
tensor
  • 733
  • 1
  • 13
  • 22
1
vote
0 answers

tcard is not resetting, getting null in tcardController.state Flutter

I am tcard pkg in my project. i want reset the card in every 5 seconds automatically the length of the list is changing but the UI is not resetting, getting null in tcardController.state Is there any other pkg, so we can achieve same functionality…
Subhangi Pawar
  • 413
  • 1
  • 6
  • 12
1
vote
1 answer

Flutter - How to reset the current page index in PageView (after card swipe)?

I have a simple PageView.builder: @override void initState() { super.initState(); _pageController = PageController(initialPage: 0, keepPage: true, viewportFraction: 1); _pageController.addListener(() { setState(() { _activeImageIndex…
who-aditya-nawandar
  • 1,334
  • 9
  • 39
  • 89
0
votes
0 answers

Implementing Koloda-android

I am working on an app in android studio, i've found a library called Koloda for the implementation i've followed this video. But when I come to 9:31 my android studio cannot find the class Koloda. This is my settings.gradle pluginManagement { …
0
votes
1 answer

Change color for a Swipe Card not working (lorentzos Swipecards)

I am building an app that uses: implementation 'com.lorentzos.swipecards:library:1.0.9@aar' for Swipe Cards. level 1 color, level 2 color It changes the color of the card but not on the com.lorentzos.flingswipe.SwipeFlingAdapterView itself. If I…
Denos
  • 1
  • 1
0
votes
1 answer

How to get value of swiped card view xamarin

I have a SwipeCardView and I want to get the id of the user that I've just swiped.
0
votes
1 answer

Failed to add dependencies in gradle

I'm learning to build android app in Java, and I want to implement tinder swipe card in my android project. I found CardStackView at https://github.com/yuyakaido/CardStackView and I want to use it. But I can't add the dependencies in my…
0
votes
1 answer

Binding TopItem from SwipeView Xamarin to Collectionview from Viewmodel to Visibility of View

so i dont understand how to bind properly the TargetNullValue from TopItem to the Visibility of my grid View. """
0
votes
1 answer

Set SwipeCardView SelectedItem to a variable in xamarin form

I'm trying to find a solution to my app more than 3 days, but without success. I need to read the current user e-mail from a SwipeCardView when the user swipe or lick in a button and store it in a variable to be used later. Is there a simple…
0
votes
1 answer

Navigate through MLToolkit.Forms.SwipeCardView

I'm developing a Tinder-like app using the MLToolkit.Forms.SwipeCardView nuget. How do I, Reload the cardView when it reaches the end (or at any time), and start all over again? Using SwipeCardView.LoopCards = true; works, but not exactly what I…
sam byte
  • 697
  • 9
  • 11
0
votes
0 answers

How to Build Sliding CardView Inside DrawerLayout?

I'm working on creating CardView that are slidable horizontally. I've been searching on Internet and watching tutorials on YouTube for days. After trying those possible solutions and advice, my app either gets errors I couldn't solve or crashes. So,…
Jerry Chen
  • 11,595
  • 5
  • 13
  • 16
0
votes
0 answers

How to customize Adapter for SwipeCard?

I am making a flash card app with SwipeCard This is my FlashCardActivity: import android.os.Bundle; import android.text.style.TtsSpan; import android.util.Log; import android.view.View; import android.widget.ArrayAdapter; import…
c-an
  • 3,543
  • 5
  • 35
  • 82
0
votes
1 answer

Ratingbar on Cardview not Showing

Note: English is not my first language. Sorry for any mistake on my text. Good morning everyone. I'm populating a cardview with data from a firebase realtime database. I caught a working code example of image and name. But I am unable to populate…
1
2