Questions tagged [tinder]

Tinder is a location-based social discovery application.

Tinder is a location-based social discovery application that facilitates communication between mutually interested users.The application (also available through App Store (iOS), Google Play and now on the Apple Watch) allows users to chat with their matches

83 questions
81
votes
11 answers

Unable to resolve dependency tree Reactjs

I am trying to install react-tinder-card in my current project. So I am trying to install the react-tinder-card but after I use the command npm install --save react-tinder-card All I can see in my console is: npm ERR! code ERESOLVE npm ERR! ERESOLVE…
Sunil Shah
  • 1,000
  • 1
  • 7
  • 17
11
votes
2 answers

How to Let Users Rate an Android App from inside the App (without redirecting to the Play Store)

In my app, I am experimenting with creating a popup that lets the user directly rate my app (eg. 5 stars) without having to redirect to the Play Store. I have read many questions (here and here) and answers on this site claiming it cannot be done…
Gema Megantara
  • 520
  • 6
  • 15
9
votes
3 answers

Efficient MySQL database design for a Tinder like app

I'm creating an app like Tinder. Which a user can swipe right or like and swipe left or dislike another users. The problem is about storing operations of users. A table is needed for users operations like below Person 1. | Person 2. | …
Robert junior
  • 140
  • 1
  • 8
6
votes
0 answers

How does Tinder algorithm keep finding users fast

I am developing an online service, not similar to Tinder at all, however their algorithm would help me understand how to scale well. My assumption is that each of their users has a skipped set, of users that have been visited before. I don't know…
user5163183
  • 103
  • 3
4
votes
3 answers

How to transform your Tinder data.json into a CSV

Tinder allows you to export your data (https://account.gotinder.com/data), which ends up exporting a data.json file. How can I transform this nested json into a CSV file I can load into a spreadsheet? The file looks something like this: $ cat…
Felipe Hoffa
  • 54,922
  • 16
  • 151
  • 325
4
votes
4 answers

How to implement a tinder-like search based on distance in Android?

I have started to develop an Android application where I need a distance based search. The user should be able to choose the maximum distance, let's say 3 km. I have already written some code where I get every user's current location (Lat, Lng) and…
David Seroussi
  • 1,650
  • 2
  • 17
  • 34
3
votes
1 answer

How can I simulate a tap/swipe gesture on some part of the screen programmatically in SwiftUI?

I have a SwiftUI app that behaves similarly to Tinder (built using this guide - or see source code). You just swipe a stack of cards left and right. I have a "thumbs up" and "thumbs down" button as alternatives to swiping, but when they are pressed,…
ktom
  • 125
  • 8
3
votes
1 answer

Add swipe card tinder on ionic 4

I would like to ask about tinder swipeable card with ionic 4. I don't find the link see below: https://github.com/ionic-team/ionic-ion-swipe-cards '
maceo bs
  • 59
  • 8
3
votes
1 answer

How does back-end of swipes/matches work in a tinder like swipe based app?

I am trying to develop an application which replicates the tinder-like swipe based feed. The idea of the App is quite similar to tinder and also has swipe right and swipe left with match feature. What I have done till now - I have created a swipe…
3
votes
1 answer

Database schema for a tinder like app

I have a database of million of Objects (simply say lot of objects). Everyday i will present to my users 3 selected objects, and like with tinder they can swipe left to say they don't like or swipe right to say they like it. I select each objects…
zeus
  • 12,173
  • 9
  • 63
  • 184
3
votes
0 answers

Animation between Activity Transitions like on Android Tinder?

I have an Android device with version 4.1.1. Running Tinder App on this device I get a nice transition from on Activity/Fragment to another. Example: I have seen that inAndroid Lollipop there are Activity transitions but they are not available on…
Michael
  • 32,527
  • 49
  • 210
  • 370
3
votes
2 answers

How does Tinder gets mutual friends despite Facebook API v2.x

This really puzzles me. Many of us know that now with Facebook API v2 you can only get the mutual friends who also gave permission to use your app and have made their list of friends public. Nevertheless, Tinder manages to show not only all (or…
2
votes
2 answers

android image stack on top of each other horizontally

I want to display an image like this, like in stack on top of each other, How I can achieve this type of design dynamically
Amit Kumar
  • 219
  • 1
  • 3
  • 11
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
2
votes
1 answer

Creating a seekbar for current location and set distance range in km similar to Tinder

I want to create an android app which has a seekbar that sets the distance range from the user's location kinda like Tinder does. How do I do this? Here's what I tried so far, but I have no idea where to go from here. It's probably completely wrong…
1
2 3 4 5 6