├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── assets └── example_tindercard.gif ├── doc └── api │ ├── __404error.html │ ├── categories.json │ ├── flutter_tindercard │ ├── AmassOrientation-class.html │ ├── AmassOrientation │ │ ├── hashCode.html │ │ ├── noSuchMethod.html │ │ ├── operator_equals.html │ │ ├── runtimeType.html │ │ └── toString.html │ ├── CardAnimation-class.html │ ├── CardAnimation │ │ ├── CardAnimation.html │ │ ├── backCardAlign.html │ │ ├── backCardSize.html │ │ ├── frontCardAlign.html │ │ ├── frontCardRota.html │ │ ├── hashCode.html │ │ ├── noSuchMethod.html │ │ ├── operator_equals.html │ │ ├── runtimeType.html │ │ └── toString.html │ ├── CardBuilder.html │ ├── CardDragUpdateCallback.html │ ├── CardSwipeCompleteCallback.html │ ├── CardSwipeOrientation-class.html │ ├── CardSwipeOrientation │ │ ├── hashCode.html │ │ ├── noSuchMethod.html │ │ ├── operator_equals.html │ │ ├── runtimeType.html │ │ └── toString.html │ ├── TinderSwapCard-class.html │ ├── TinderSwapCard │ │ ├── TinderSwapCard.html │ │ ├── createElement.html │ │ ├── createState.html │ │ ├── debugDescribeChildren.html │ │ ├── debugFillProperties.html │ │ ├── hashCode.html │ │ ├── key.html │ │ ├── noSuchMethod.html │ │ ├── operator_equals.html │ │ ├── runtimeType.html │ │ ├── swipeCompleteCallback.html │ │ ├── swipeUpdateCallback.html │ │ ├── toDiagnosticsNode.html │ │ ├── toString.html │ │ ├── toStringDeep.html │ │ ├── toStringShallow.html │ │ └── toStringShort.html │ └── flutter_tindercard-library.html │ ├── index.html │ ├── index.json │ └── static-assets │ ├── URI.js │ ├── css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css │ ├── favicon.png │ ├── github.css │ ├── highlight.pack.js │ ├── play_button.svg │ ├── readme.md │ ├── script.js │ ├── sdk_footer_text.html │ ├── styles.css │ └── typeahead.bundle.min.js ├── example ├── async_data │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── example_tindercard.gif │ │ ├── welcome0.png │ │ ├── welcome1.png │ │ └── welcome2.png │ ├── lib │ │ └── main.dart │ └── pubspec.yaml └── example │ ├── .gitignore │ ├── README.md │ ├── assets │ ├── example_tindercard.gif │ ├── welcome0.png │ ├── welcome1.png │ └── welcome2.png │ ├── lib │ └── main.dart │ └── pubspec.yaml ├── flutter_tindercard.iml ├── lib └── flutter_tindercard.dart ├── pubspec.yaml └── test └── flutter_tindercard_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/example_tindercard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/assets/example_tindercard.gif -------------------------------------------------------------------------------- /doc/api/__404error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/__404error.html -------------------------------------------------------------------------------- /doc/api/categories.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/AmassOrientation-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/AmassOrientation-class.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/AmassOrientation/hashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/AmassOrientation/hashCode.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/AmassOrientation/noSuchMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/AmassOrientation/noSuchMethod.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/AmassOrientation/operator_equals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/AmassOrientation/operator_equals.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/AmassOrientation/runtimeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/AmassOrientation/runtimeType.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/AmassOrientation/toString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/AmassOrientation/toString.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation-class.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation/CardAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation/CardAnimation.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation/backCardAlign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation/backCardAlign.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation/backCardSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation/backCardSize.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation/frontCardAlign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation/frontCardAlign.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation/frontCardRota.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation/frontCardRota.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation/hashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation/hashCode.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation/noSuchMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation/noSuchMethod.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation/operator_equals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation/operator_equals.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation/runtimeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation/runtimeType.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardAnimation/toString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardAnimation/toString.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardBuilder.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardDragUpdateCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardDragUpdateCallback.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardSwipeCompleteCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardSwipeCompleteCallback.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardSwipeOrientation-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardSwipeOrientation-class.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardSwipeOrientation/hashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardSwipeOrientation/hashCode.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardSwipeOrientation/noSuchMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardSwipeOrientation/noSuchMethod.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardSwipeOrientation/operator_equals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardSwipeOrientation/operator_equals.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardSwipeOrientation/runtimeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardSwipeOrientation/runtimeType.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/CardSwipeOrientation/toString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/CardSwipeOrientation/toString.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard-class.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/TinderSwapCard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/TinderSwapCard.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/createElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/createElement.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/createState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/createState.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/debugDescribeChildren.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/debugDescribeChildren.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/debugFillProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/debugFillProperties.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/hashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/hashCode.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/key.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/noSuchMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/noSuchMethod.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/operator_equals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/operator_equals.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/runtimeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/runtimeType.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/swipeCompleteCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/swipeCompleteCallback.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/swipeUpdateCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/swipeUpdateCallback.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/toDiagnosticsNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/toDiagnosticsNode.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/toString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/toString.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/toStringDeep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/toStringDeep.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/toStringShallow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/toStringShallow.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/TinderSwapCard/toStringShort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/TinderSwapCard/toStringShort.html -------------------------------------------------------------------------------- /doc/api/flutter_tindercard/flutter_tindercard-library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/flutter_tindercard/flutter_tindercard-library.html -------------------------------------------------------------------------------- /doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/index.html -------------------------------------------------------------------------------- /doc/api/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/index.json -------------------------------------------------------------------------------- /doc/api/static-assets/URI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/URI.js -------------------------------------------------------------------------------- /doc/api/static-assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/css/bootstrap.css -------------------------------------------------------------------------------- /doc/api/static-assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /doc/api/static-assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /doc/api/static-assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/favicon.png -------------------------------------------------------------------------------- /doc/api/static-assets/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/github.css -------------------------------------------------------------------------------- /doc/api/static-assets/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/highlight.pack.js -------------------------------------------------------------------------------- /doc/api/static-assets/play_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/play_button.svg -------------------------------------------------------------------------------- /doc/api/static-assets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/readme.md -------------------------------------------------------------------------------- /doc/api/static-assets/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/script.js -------------------------------------------------------------------------------- /doc/api/static-assets/sdk_footer_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/sdk_footer_text.html -------------------------------------------------------------------------------- /doc/api/static-assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/styles.css -------------------------------------------------------------------------------- /doc/api/static-assets/typeahead.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/doc/api/static-assets/typeahead.bundle.min.js -------------------------------------------------------------------------------- /example/async_data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/async_data/.gitignore -------------------------------------------------------------------------------- /example/async_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/async_data/README.md -------------------------------------------------------------------------------- /example/async_data/assets/example_tindercard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/async_data/assets/example_tindercard.gif -------------------------------------------------------------------------------- /example/async_data/assets/welcome0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/async_data/assets/welcome0.png -------------------------------------------------------------------------------- /example/async_data/assets/welcome1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/async_data/assets/welcome1.png -------------------------------------------------------------------------------- /example/async_data/assets/welcome2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/async_data/assets/welcome2.png -------------------------------------------------------------------------------- /example/async_data/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/async_data/lib/main.dart -------------------------------------------------------------------------------- /example/async_data/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/async_data/pubspec.yaml -------------------------------------------------------------------------------- /example/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/example/.gitignore -------------------------------------------------------------------------------- /example/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/example/README.md -------------------------------------------------------------------------------- /example/example/assets/example_tindercard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/example/assets/example_tindercard.gif -------------------------------------------------------------------------------- /example/example/assets/welcome0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/example/assets/welcome0.png -------------------------------------------------------------------------------- /example/example/assets/welcome1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/example/assets/welcome1.png -------------------------------------------------------------------------------- /example/example/assets/welcome2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/example/assets/welcome2.png -------------------------------------------------------------------------------- /example/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/example/lib/main.dart -------------------------------------------------------------------------------- /example/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/example/example/pubspec.yaml -------------------------------------------------------------------------------- /flutter_tindercard.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/flutter_tindercard.iml -------------------------------------------------------------------------------- /lib/flutter_tindercard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/lib/flutter_tindercard.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/flutter_tindercard_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaunRain/flutter_tindercard/HEAD/test/flutter_tindercard_test.dart --------------------------------------------------------------------------------