├── .assets └── what-about-gestures.png ├── .gitattributes ├── .gitignore ├── 00-introduction-to-gestures ├── .expo-shared │ └── assets.json ├── .gitignore ├── App.tsx ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package.json ├── tsconfig.json └── yarn.lock ├── 01-bottom-sheet ├── .expo-shared │ └── assets.json ├── .gitignore ├── App.tsx ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── components │ └── BottomSheet.tsx ├── package.json ├── tsconfig.json └── yarn.lock ├── 02-animated-3d-card ├── .buckconfig ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── __tests__ │ └── App-test.tsx ├── _bundle │ └── config ├── _ruby-version ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── animated_3d_card │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── animated_3d_card │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── newarchitecture │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ ├── components │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ └── modules │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── MainApplicationModuleProvider.cpp │ │ │ ├── MainApplicationModuleProvider.h │ │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ │ ├── MainComponentsRegistry.cpp │ │ │ ├── MainComponentsRegistry.h │ │ │ └── OnLoad.cpp │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── components │ └── BackgroundGradient.tsx ├── index.js └── ios │ ├── Podfile │ └── Podfile.lock ├── 03-full-bottom-sheet ├── .gitignore ├── App.tsx ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── components │ └── BottomSheet.tsx ├── package.json ├── tsconfig.json └── yarn.lock ├── 04-improve-tap-gestures ├── .gitignore ├── App.tsx ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── components │ └── custom-touchable.tsx ├── package.json ├── tsconfig.json └── yarn.lock └── README.md /.assets/what-about-gestures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/.assets/what-about-gestures.png -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.* linguist-language=TypeScript 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/.gitignore -------------------------------------------------------------------------------- /00-introduction-to-gestures/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/.expo-shared/assets.json -------------------------------------------------------------------------------- /00-introduction-to-gestures/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/.gitignore -------------------------------------------------------------------------------- /00-introduction-to-gestures/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/App.tsx -------------------------------------------------------------------------------- /00-introduction-to-gestures/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/app.json -------------------------------------------------------------------------------- /00-introduction-to-gestures/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/assets/adaptive-icon.png -------------------------------------------------------------------------------- /00-introduction-to-gestures/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/assets/favicon.png -------------------------------------------------------------------------------- /00-introduction-to-gestures/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/assets/icon.png -------------------------------------------------------------------------------- /00-introduction-to-gestures/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/assets/splash.png -------------------------------------------------------------------------------- /00-introduction-to-gestures/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/babel.config.js -------------------------------------------------------------------------------- /00-introduction-to-gestures/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/package.json -------------------------------------------------------------------------------- /00-introduction-to-gestures/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/tsconfig.json -------------------------------------------------------------------------------- /00-introduction-to-gestures/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/00-introduction-to-gestures/yarn.lock -------------------------------------------------------------------------------- /01-bottom-sheet/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/.expo-shared/assets.json -------------------------------------------------------------------------------- /01-bottom-sheet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/.gitignore -------------------------------------------------------------------------------- /01-bottom-sheet/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/App.tsx -------------------------------------------------------------------------------- /01-bottom-sheet/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/app.json -------------------------------------------------------------------------------- /01-bottom-sheet/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/assets/adaptive-icon.png -------------------------------------------------------------------------------- /01-bottom-sheet/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/assets/favicon.png -------------------------------------------------------------------------------- /01-bottom-sheet/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/assets/icon.png -------------------------------------------------------------------------------- /01-bottom-sheet/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/assets/splash.png -------------------------------------------------------------------------------- /01-bottom-sheet/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/babel.config.js -------------------------------------------------------------------------------- /01-bottom-sheet/components/BottomSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/components/BottomSheet.tsx -------------------------------------------------------------------------------- /01-bottom-sheet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/package.json -------------------------------------------------------------------------------- /01-bottom-sheet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/tsconfig.json -------------------------------------------------------------------------------- /01-bottom-sheet/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/01-bottom-sheet/yarn.lock -------------------------------------------------------------------------------- /02-animated-3d-card/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/.buckconfig -------------------------------------------------------------------------------- /02-animated-3d-card/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/.eslintrc.js -------------------------------------------------------------------------------- /02-animated-3d-card/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/.gitignore -------------------------------------------------------------------------------- /02-animated-3d-card/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/.prettierrc.js -------------------------------------------------------------------------------- /02-animated-3d-card/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /02-animated-3d-card/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/App.tsx -------------------------------------------------------------------------------- /02-animated-3d-card/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/Gemfile -------------------------------------------------------------------------------- /02-animated-3d-card/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/__tests__/App-test.tsx -------------------------------------------------------------------------------- /02-animated-3d-card/_bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/_bundle/config -------------------------------------------------------------------------------- /02-animated-3d-card/_ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/_BUCK -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/build.gradle -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/build_defs.bzl -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/debug.keystore -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/debug/java/com/animated_3d_card/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/debug/java/com/animated_3d_card/ReactNativeFlipper.java -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/java/com/animated_3d_card/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/java/com/animated_3d_card/MainActivity.java -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/java/com/animated_3d_card/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/java/com/animated_3d_card/MainApplication.java -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/java/com/animated_3d_card/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/java/com/animated_3d_card/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/java/com/animated_3d_card/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/java/com/animated_3d_card/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/java/com/animated_3d_card/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/java/com/animated_3d_card/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02-animated-3d-card/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /02-animated-3d-card/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/build.gradle -------------------------------------------------------------------------------- /02-animated-3d-card/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/gradle.properties -------------------------------------------------------------------------------- /02-animated-3d-card/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02-animated-3d-card/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02-animated-3d-card/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/gradlew -------------------------------------------------------------------------------- /02-animated-3d-card/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/gradlew.bat -------------------------------------------------------------------------------- /02-animated-3d-card/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/android/settings.gradle -------------------------------------------------------------------------------- /02-animated-3d-card/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/app.json -------------------------------------------------------------------------------- /02-animated-3d-card/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/babel.config.js -------------------------------------------------------------------------------- /02-animated-3d-card/components/BackgroundGradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/components/BackgroundGradient.tsx -------------------------------------------------------------------------------- /02-animated-3d-card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/index.js -------------------------------------------------------------------------------- /02-animated-3d-card/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/ios/Podfile -------------------------------------------------------------------------------- /02-animated-3d-card/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/02-animated-3d-card/ios/Podfile.lock -------------------------------------------------------------------------------- /03-full-bottom-sheet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/.gitignore -------------------------------------------------------------------------------- /03-full-bottom-sheet/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/App.tsx -------------------------------------------------------------------------------- /03-full-bottom-sheet/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/app.json -------------------------------------------------------------------------------- /03-full-bottom-sheet/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/assets/adaptive-icon.png -------------------------------------------------------------------------------- /03-full-bottom-sheet/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/assets/favicon.png -------------------------------------------------------------------------------- /03-full-bottom-sheet/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/assets/icon.png -------------------------------------------------------------------------------- /03-full-bottom-sheet/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/assets/splash.png -------------------------------------------------------------------------------- /03-full-bottom-sheet/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/babel.config.js -------------------------------------------------------------------------------- /03-full-bottom-sheet/components/BottomSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/components/BottomSheet.tsx -------------------------------------------------------------------------------- /03-full-bottom-sheet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/package.json -------------------------------------------------------------------------------- /03-full-bottom-sheet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/tsconfig.json -------------------------------------------------------------------------------- /03-full-bottom-sheet/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/03-full-bottom-sheet/yarn.lock -------------------------------------------------------------------------------- /04-improve-tap-gestures/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/.gitignore -------------------------------------------------------------------------------- /04-improve-tap-gestures/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/App.tsx -------------------------------------------------------------------------------- /04-improve-tap-gestures/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/app.json -------------------------------------------------------------------------------- /04-improve-tap-gestures/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/assets/adaptive-icon.png -------------------------------------------------------------------------------- /04-improve-tap-gestures/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/assets/favicon.png -------------------------------------------------------------------------------- /04-improve-tap-gestures/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/assets/icon.png -------------------------------------------------------------------------------- /04-improve-tap-gestures/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/assets/splash.png -------------------------------------------------------------------------------- /04-improve-tap-gestures/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/babel.config.js -------------------------------------------------------------------------------- /04-improve-tap-gestures/components/custom-touchable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/components/custom-touchable.tsx -------------------------------------------------------------------------------- /04-improve-tap-gestures/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/package.json -------------------------------------------------------------------------------- /04-improve-tap-gestures/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/tsconfig.json -------------------------------------------------------------------------------- /04-improve-tap-gestures/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/04-improve-tap-gestures/yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enzomanuelmangano/what-about-gestures/HEAD/README.md --------------------------------------------------------------------------------