├── .buckconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .svgorc.json ├── .svgrrc.json ├── .watchmanconfig ├── LICENSE ├── README.md ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── wholletapp │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── TitilliumWeb-Bold.ttf │ │ │ ├── TitilliumWeb-Light.ttf │ │ │ ├── TitilliumWeb-Regular.ttf │ │ │ └── TitilliumWeb-SemiBold.ttf │ │ ├── java │ │ └── com │ │ │ └── wholletapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── 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 │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── WholletApp-tvOS │ └── Info.plist ├── WholletApp-tvOSTests │ └── Info.plist ├── WholletApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── WholletApp-tvOS.xcscheme │ │ └── WholletApp.xcscheme ├── WholletApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── WholletAppTests │ ├── Info.plist │ └── WholletAppTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── src ├── App.tsx ├── __tests__ │ └── App-test.tsx ├── assets │ ├── fonts │ │ ├── TitilliumWeb-Bold.ttf │ │ ├── TitilliumWeb-Light.ttf │ │ ├── TitilliumWeb-Regular.ttf │ │ └── TitilliumWeb-SemiBold.ttf │ ├── icons │ │ ├── afganistan.svg │ │ ├── albania.svg │ │ ├── align-right.svg │ │ ├── angola.svg │ │ ├── argentine.svg │ │ ├── armenia.svg │ │ ├── arrow-right-circle.svg │ │ ├── arrow-right.svg │ │ ├── australia.svg │ │ ├── azerbaijan.svg │ │ ├── bitcoin-cash.svg │ │ ├── bitcoin.svg │ │ ├── box.svg │ │ ├── check.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left.svg │ │ ├── copy.svg │ │ ├── dash.svg │ │ ├── delete.svg │ │ ├── eos.svg │ │ ├── ethereum.svg │ │ ├── external-link.svg │ │ ├── eye-off.svg │ │ ├── eye.svg │ │ ├── filter.svg │ │ ├── home.svg │ │ ├── litecoin.svg │ │ ├── log-out.svg │ │ ├── minimize.svg │ │ ├── monero.svg │ │ ├── neo.svg │ │ ├── omisego.svg │ │ ├── plus-circle.svg │ │ ├── plus.svg │ │ ├── reject.svg │ │ ├── repeat.svg │ │ ├── ripple.svg │ │ ├── share.svg │ │ ├── shuffle.svg │ │ ├── status deposited.svg │ │ ├── status exchanged.svg │ │ ├── status pending.svg │ │ ├── status rejected.svg │ │ ├── status sent.svg │ │ ├── status withdrawn.svg │ │ ├── stellar.svg │ │ ├── success.svg │ │ ├── swap.svg │ │ ├── united states.svg │ │ ├── user.svg │ │ ├── withdrawal.svg │ │ └── x.svg │ └── illustrations │ │ ├── astro_kitten.svg │ │ ├── desktop.svg │ │ ├── email.svg │ │ ├── grow.svg │ │ ├── idea.svg │ │ ├── login.svg │ │ ├── mobile.svg │ │ ├── office.svg │ │ ├── privacy.svg │ │ ├── running.svg │ │ ├── scan.svg │ │ ├── security.svg │ │ ├── social.svg │ │ ├── success.svg │ │ └── wondering.svg ├── components │ ├── ActionButton │ │ ├── ActionButton.style.ts │ │ ├── ActionButton.tsx │ │ └── index.ts │ ├── AmountConverterInput.tsx │ ├── AnimatedBox.tsx │ ├── AuthForm │ │ ├── AuthForm.style.ts │ │ ├── AuthForm.tsx │ │ └── index.ts │ ├── Background.tsx │ ├── BottomSection │ │ ├── BottomSection.style.ts │ │ ├── BottomSection.tsx │ │ └── index.ts │ ├── Box.tsx │ ├── ButtonContainer │ │ ├── ButtonContainer.style.ts │ │ ├── ButtonContainer.tsx │ │ └── index.ts │ ├── CoinActionButton.tsx │ ├── CoinAsset │ │ ├── CoinAsset.style.ts │ │ ├── CoinAsset.tsx │ │ └── index.ts │ ├── CoinSliderItem │ │ ├── CoinSliderItem.style.ts │ │ ├── CoinSliderItem.tsx │ │ └── index.ts │ ├── ContentContainer │ │ ├── ContentContainer.style.ts │ │ ├── ContentContainer.tsx │ │ └── index.ts │ ├── DarkThemeProvider.tsx │ ├── DialingCodeDropdown │ │ ├── DialingCodeDropdown.style.ts │ │ ├── DialingCodeDropdown.tsx │ │ └── index.ts │ ├── Header │ │ ├── Header.style.ts │ │ ├── Header.tsx │ │ └── index.ts │ ├── Icon.tsx │ ├── IconButton.tsx │ ├── Illustration.tsx │ ├── Indicator.tsx │ ├── IndicatorDot.tsx │ ├── Input.tsx │ ├── LabeledInfo.tsx │ ├── Loading.tsx │ ├── Notification │ │ ├── Notification.style.ts │ │ ├── Notification.tsx │ │ └── index.ts │ ├── NotificationHandler.tsx │ ├── NumberPad │ │ ├── NumberPad.style.ts │ │ ├── NumberPad.tsx │ │ └── index.ts │ ├── OnboardingSlider.tsx │ ├── OnboardingSliderItem │ │ ├── OnboardingSliderItem.style.ts │ │ ├── OnboardingSliderItem.tsx │ │ └── index.tsx │ ├── PinLayout │ │ ├── PinLayout.style.ts │ │ ├── PinLayout.tsx │ │ └── index.ts │ ├── PressableText.tsx │ ├── ProgressBar.tsx │ ├── SingleNumberInput │ │ ├── SingleNumberInput.style.ts │ │ ├── SingleNumberInput.tsx │ │ └── index.ts │ ├── StyledButton.tsx │ ├── StyledInput.tsx │ ├── StyledPressable.tsx │ ├── StyledText.tsx │ ├── Transaction │ │ ├── Transaction.style.ts │ │ ├── Transaction.tsx │ │ └── index.ts │ ├── TransactionFilter │ │ ├── TransactionFilter.style.ts │ │ ├── TransactionFilter.tsx │ │ └── index.ts │ ├── assets │ │ ├── icons │ │ │ ├── Afghanistan.tsx │ │ │ ├── Albania.tsx │ │ │ ├── AlignRight.tsx │ │ │ ├── Angola.tsx │ │ │ ├── Argentine.tsx │ │ │ ├── Armenia.tsx │ │ │ ├── ArrowRight.tsx │ │ │ ├── Australia.tsx │ │ │ ├── Azerbaijan.tsx │ │ │ ├── Bitcoin.tsx │ │ │ ├── BitcoinCash.tsx │ │ │ ├── Box.tsx │ │ │ ├── Check.tsx │ │ │ ├── ChevronDown.tsx │ │ │ ├── ChevronLeft.tsx │ │ │ ├── Copy.tsx │ │ │ ├── Dash.tsx │ │ │ ├── Delete.tsx │ │ │ ├── Deposit.tsx │ │ │ ├── Eos.tsx │ │ │ ├── Ethereum.tsx │ │ │ ├── Exchange.tsx │ │ │ ├── ExternalLink.tsx │ │ │ ├── Eye.tsx │ │ │ ├── EyeOff.tsx │ │ │ ├── Filter.tsx │ │ │ ├── Home.tsx │ │ │ ├── Litecoin.tsx │ │ │ ├── LogOut.tsx │ │ │ ├── Minimize.tsx │ │ │ ├── Monero.tsx │ │ │ ├── Neo.tsx │ │ │ ├── Omisego.tsx │ │ │ ├── Plus.tsx │ │ │ ├── PlusCircle.tsx │ │ │ ├── Reject.tsx │ │ │ ├── Repeat.tsx │ │ │ ├── Ripple.tsx │ │ │ ├── Send.tsx │ │ │ ├── Share.tsx │ │ │ ├── StatusDeposited.tsx │ │ │ ├── StatusExchanged.tsx │ │ │ ├── StatusPending.tsx │ │ │ ├── StatusRejected.tsx │ │ │ ├── StatusSent.tsx │ │ │ ├── StatusWithdrawn.tsx │ │ │ ├── Stellar.tsx │ │ │ ├── Success.tsx │ │ │ ├── Swap.tsx │ │ │ ├── UnitedStates.tsx │ │ │ ├── User.tsx │ │ │ ├── Withdrawal.tsx │ │ │ ├── WithdrawalSolid.tsx │ │ │ ├── X.tsx │ │ │ └── index.tsx │ │ └── illustrations │ │ │ ├── AstroKitten.tsx │ │ │ ├── Desktop.tsx │ │ │ ├── Email.tsx │ │ │ ├── Grow.tsx │ │ │ ├── Idea.tsx │ │ │ ├── Login.tsx │ │ │ ├── Logo.tsx │ │ │ ├── Mobile.tsx │ │ │ ├── Office.tsx │ │ │ ├── Privacy.tsx │ │ │ ├── Running.tsx │ │ │ ├── Scan.tsx │ │ │ ├── Security.tsx │ │ │ ├── Social.tsx │ │ │ ├── Success.tsx │ │ │ ├── Wondering.tsx │ │ │ └── index.tsx │ └── index.tsx ├── constants │ ├── index.ts │ └── onboardingSliderData.ts ├── context │ └── index.tsx ├── navigation │ ├── BottomTab │ │ ├── BottomTabNavigator.tsx │ │ └── index.tsx │ ├── KnowYourCustomer │ │ └── KYCNavigator.tsx │ ├── PreAuth │ │ ├── CCVPNavigator.tsx │ │ ├── LoginNavigator.tsx │ │ ├── PreAuthNavigator.tsx │ │ ├── SignUpNavigator.tsx │ │ └── index.tsx │ ├── Profile │ │ ├── 2FANavigator.tsx │ │ ├── PNVNavigator.tsx │ │ ├── ProfileNavigator.tsx │ │ └── SecurityNavigator.tsx │ ├── RootNavigator.tsx │ ├── SendMoneyToYourFriend │ │ └── SMTYFNavigator.tsx │ ├── Wallet │ │ └── WalletNavigator.tsx │ ├── Withdrawal │ │ └── WithdrawalNavigator.tsx │ └── index.tsx ├── screens │ ├── BottomTab │ │ ├── Overview.tsx │ │ ├── Portfolio.tsx │ │ ├── Transactions.tsx │ │ └── index.tsx │ ├── KnowYourCustomer │ │ ├── DocumentVerification.tsx │ │ ├── Done.tsx │ │ ├── NationalIDScan.tsx │ │ ├── PersonalInformation.tsx │ │ ├── ScanBackSide.tsx │ │ ├── ScanFrontSide.tsx │ │ └── index.tsx │ ├── PreAuth │ │ ├── CreateConfirmVerifyPin.tsx │ │ ├── LoginScreens │ │ │ ├── CheckYourEmail.tsx │ │ │ ├── ForgotPassword.tsx │ │ │ ├── Login.tsx │ │ │ ├── NewPassword.tsx │ │ │ └── index.tsx │ │ ├── Onboarding.tsx │ │ ├── SignUp │ │ │ ├── SignUp.tsx │ │ │ └── index.ts │ │ ├── Welcome │ │ │ ├── Welcome.style.ts │ │ │ ├── Welcome.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── Profile │ │ ├── ChooseCurrency.tsx │ │ ├── Overview.tsx │ │ ├── PersonalInformation.tsx │ │ ├── PhoneNumberVerification │ │ │ ├── ChooseDialingCode.tsx │ │ │ ├── Done.tsx │ │ │ ├── EnterPhoneNumber.tsx │ │ │ ├── VerifyCode.tsx │ │ │ └── index.tsx │ │ ├── SecurityScreens │ │ │ ├── 2FAScreens │ │ │ │ ├── Confirmation.tsx │ │ │ │ ├── TFA.tsx │ │ │ │ └── index.tsx │ │ │ ├── ChangePassword.tsx │ │ │ ├── ChangePin.tsx │ │ │ ├── NewPin.tsx │ │ │ ├── Security.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ ├── SendMoneyToFriend │ │ ├── AddMessage.tsx │ │ ├── Amount.tsx │ │ ├── ChooseRecipient.tsx │ │ ├── Confirmation.tsx │ │ └── index.tsx │ ├── Wallet │ │ ├── AllAssets.tsx │ │ ├── AllTransactions.tsx │ │ ├── CoinDetails.tsx │ │ ├── Overview.tsx │ │ ├── TransactionDetails.tsx │ │ └── index.tsx │ └── Withdrawal │ │ ├── Amount.tsx │ │ ├── Confirmation.tsx │ │ ├── EnterAddress.tsx │ │ ├── ScanQRCode.tsx │ │ └── index.tsx ├── styles │ ├── index.ts │ └── spacing.ts ├── theme │ └── index.ts ├── types │ └── index.ts └── utils │ ├── authValidation.ts │ ├── capitalizedCase.ts │ ├── getCoinSymbol.ts │ ├── getCountryName.ts │ ├── getTransactionStatusColor.ts │ ├── index.ts │ ├── isIPhoneX.ts │ ├── scaleSpacing.ts │ ├── useAlert.ts │ └── useKeyboardDidShow.ts ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/.prettierrc -------------------------------------------------------------------------------- /.svgorc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/.svgorc.json -------------------------------------------------------------------------------- /.svgrrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/.svgrrc.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/README.md -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/wholletapp/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/debug/java/com/wholletapp/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/assets/fonts/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/TitilliumWeb-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/assets/fonts/TitilliumWeb-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/assets/fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/TitilliumWeb-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/assets/fonts/TitilliumWeb-SemiBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/wholletapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/java/com/wholletapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/wholletapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/java/com/wholletapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/WholletApp-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/WholletApp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/WholletApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/WholletApp.xcodeproj/xcshareddata/xcschemes/WholletApp-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp.xcodeproj/xcshareddata/xcschemes/WholletApp-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/WholletApp.xcodeproj/xcshareddata/xcschemes/WholletApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp.xcodeproj/xcshareddata/xcschemes/WholletApp.xcscheme -------------------------------------------------------------------------------- /ios/WholletApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp/AppDelegate.h -------------------------------------------------------------------------------- /ios/WholletApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp/AppDelegate.m -------------------------------------------------------------------------------- /ios/WholletApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/WholletApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/WholletApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp/Info.plist -------------------------------------------------------------------------------- /ios/WholletApp/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/WholletApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletApp/main.m -------------------------------------------------------------------------------- /ios/WholletAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletAppTests/Info.plist -------------------------------------------------------------------------------- /ios/WholletAppTests/WholletAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/ios/WholletAppTests/WholletAppTests.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/jest.config.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/__tests__/App-test.tsx -------------------------------------------------------------------------------- /src/assets/fonts/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/fonts/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/TitilliumWeb-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/fonts/TitilliumWeb-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/TitilliumWeb-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/fonts/TitilliumWeb-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/icons/afganistan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/afganistan.svg -------------------------------------------------------------------------------- /src/assets/icons/albania.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/albania.svg -------------------------------------------------------------------------------- /src/assets/icons/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/align-right.svg -------------------------------------------------------------------------------- /src/assets/icons/angola.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/angola.svg -------------------------------------------------------------------------------- /src/assets/icons/argentine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/argentine.svg -------------------------------------------------------------------------------- /src/assets/icons/armenia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/armenia.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-right-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/arrow-right-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/arrow-right.svg -------------------------------------------------------------------------------- /src/assets/icons/australia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/australia.svg -------------------------------------------------------------------------------- /src/assets/icons/azerbaijan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/azerbaijan.svg -------------------------------------------------------------------------------- /src/assets/icons/bitcoin-cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/bitcoin-cash.svg -------------------------------------------------------------------------------- /src/assets/icons/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/bitcoin.svg -------------------------------------------------------------------------------- /src/assets/icons/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/box.svg -------------------------------------------------------------------------------- /src/assets/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/check.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/chevron-down.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/chevron-left.svg -------------------------------------------------------------------------------- /src/assets/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/copy.svg -------------------------------------------------------------------------------- /src/assets/icons/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/dash.svg -------------------------------------------------------------------------------- /src/assets/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/delete.svg -------------------------------------------------------------------------------- /src/assets/icons/eos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/eos.svg -------------------------------------------------------------------------------- /src/assets/icons/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/ethereum.svg -------------------------------------------------------------------------------- /src/assets/icons/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/external-link.svg -------------------------------------------------------------------------------- /src/assets/icons/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/eye-off.svg -------------------------------------------------------------------------------- /src/assets/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/eye.svg -------------------------------------------------------------------------------- /src/assets/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/filter.svg -------------------------------------------------------------------------------- /src/assets/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/home.svg -------------------------------------------------------------------------------- /src/assets/icons/litecoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/litecoin.svg -------------------------------------------------------------------------------- /src/assets/icons/log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/log-out.svg -------------------------------------------------------------------------------- /src/assets/icons/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/minimize.svg -------------------------------------------------------------------------------- /src/assets/icons/monero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/monero.svg -------------------------------------------------------------------------------- /src/assets/icons/neo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/neo.svg -------------------------------------------------------------------------------- /src/assets/icons/omisego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/omisego.svg -------------------------------------------------------------------------------- /src/assets/icons/plus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/plus-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/plus.svg -------------------------------------------------------------------------------- /src/assets/icons/reject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/reject.svg -------------------------------------------------------------------------------- /src/assets/icons/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/repeat.svg -------------------------------------------------------------------------------- /src/assets/icons/ripple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/ripple.svg -------------------------------------------------------------------------------- /src/assets/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/share.svg -------------------------------------------------------------------------------- /src/assets/icons/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/shuffle.svg -------------------------------------------------------------------------------- /src/assets/icons/status deposited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/status deposited.svg -------------------------------------------------------------------------------- /src/assets/icons/status exchanged.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/status exchanged.svg -------------------------------------------------------------------------------- /src/assets/icons/status pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/status pending.svg -------------------------------------------------------------------------------- /src/assets/icons/status rejected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/status rejected.svg -------------------------------------------------------------------------------- /src/assets/icons/status sent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/status sent.svg -------------------------------------------------------------------------------- /src/assets/icons/status withdrawn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/status withdrawn.svg -------------------------------------------------------------------------------- /src/assets/icons/stellar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/stellar.svg -------------------------------------------------------------------------------- /src/assets/icons/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/success.svg -------------------------------------------------------------------------------- /src/assets/icons/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/swap.svg -------------------------------------------------------------------------------- /src/assets/icons/united states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/united states.svg -------------------------------------------------------------------------------- /src/assets/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/user.svg -------------------------------------------------------------------------------- /src/assets/icons/withdrawal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/withdrawal.svg -------------------------------------------------------------------------------- /src/assets/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/icons/x.svg -------------------------------------------------------------------------------- /src/assets/illustrations/astro_kitten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/astro_kitten.svg -------------------------------------------------------------------------------- /src/assets/illustrations/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/desktop.svg -------------------------------------------------------------------------------- /src/assets/illustrations/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/email.svg -------------------------------------------------------------------------------- /src/assets/illustrations/grow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/grow.svg -------------------------------------------------------------------------------- /src/assets/illustrations/idea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/idea.svg -------------------------------------------------------------------------------- /src/assets/illustrations/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/login.svg -------------------------------------------------------------------------------- /src/assets/illustrations/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/mobile.svg -------------------------------------------------------------------------------- /src/assets/illustrations/office.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/office.svg -------------------------------------------------------------------------------- /src/assets/illustrations/privacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/privacy.svg -------------------------------------------------------------------------------- /src/assets/illustrations/running.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/running.svg -------------------------------------------------------------------------------- /src/assets/illustrations/scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/scan.svg -------------------------------------------------------------------------------- /src/assets/illustrations/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/security.svg -------------------------------------------------------------------------------- /src/assets/illustrations/social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/social.svg -------------------------------------------------------------------------------- /src/assets/illustrations/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/success.svg -------------------------------------------------------------------------------- /src/assets/illustrations/wondering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/assets/illustrations/wondering.svg -------------------------------------------------------------------------------- /src/components/ActionButton/ActionButton.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/ActionButton/ActionButton.style.ts -------------------------------------------------------------------------------- /src/components/ActionButton/ActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/ActionButton/ActionButton.tsx -------------------------------------------------------------------------------- /src/components/ActionButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/ActionButton/index.ts -------------------------------------------------------------------------------- /src/components/AmountConverterInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/AmountConverterInput.tsx -------------------------------------------------------------------------------- /src/components/AnimatedBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/AnimatedBox.tsx -------------------------------------------------------------------------------- /src/components/AuthForm/AuthForm.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/AuthForm/AuthForm.style.ts -------------------------------------------------------------------------------- /src/components/AuthForm/AuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/AuthForm/AuthForm.tsx -------------------------------------------------------------------------------- /src/components/AuthForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/AuthForm/index.ts -------------------------------------------------------------------------------- /src/components/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Background.tsx -------------------------------------------------------------------------------- /src/components/BottomSection/BottomSection.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/BottomSection/BottomSection.style.ts -------------------------------------------------------------------------------- /src/components/BottomSection/BottomSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/BottomSection/BottomSection.tsx -------------------------------------------------------------------------------- /src/components/BottomSection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/BottomSection/index.ts -------------------------------------------------------------------------------- /src/components/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Box.tsx -------------------------------------------------------------------------------- /src/components/ButtonContainer/ButtonContainer.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/ButtonContainer/ButtonContainer.style.ts -------------------------------------------------------------------------------- /src/components/ButtonContainer/ButtonContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/ButtonContainer/ButtonContainer.tsx -------------------------------------------------------------------------------- /src/components/ButtonContainer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/ButtonContainer/index.ts -------------------------------------------------------------------------------- /src/components/CoinActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/CoinActionButton.tsx -------------------------------------------------------------------------------- /src/components/CoinAsset/CoinAsset.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/CoinAsset/CoinAsset.style.ts -------------------------------------------------------------------------------- /src/components/CoinAsset/CoinAsset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/CoinAsset/CoinAsset.tsx -------------------------------------------------------------------------------- /src/components/CoinAsset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/CoinAsset/index.ts -------------------------------------------------------------------------------- /src/components/CoinSliderItem/CoinSliderItem.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/CoinSliderItem/CoinSliderItem.style.ts -------------------------------------------------------------------------------- /src/components/CoinSliderItem/CoinSliderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/CoinSliderItem/CoinSliderItem.tsx -------------------------------------------------------------------------------- /src/components/CoinSliderItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/CoinSliderItem/index.ts -------------------------------------------------------------------------------- /src/components/ContentContainer/ContentContainer.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/ContentContainer/ContentContainer.style.ts -------------------------------------------------------------------------------- /src/components/ContentContainer/ContentContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/ContentContainer/ContentContainer.tsx -------------------------------------------------------------------------------- /src/components/ContentContainer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/ContentContainer/index.ts -------------------------------------------------------------------------------- /src/components/DarkThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/DarkThemeProvider.tsx -------------------------------------------------------------------------------- /src/components/DialingCodeDropdown/DialingCodeDropdown.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/DialingCodeDropdown/DialingCodeDropdown.style.ts -------------------------------------------------------------------------------- /src/components/DialingCodeDropdown/DialingCodeDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/DialingCodeDropdown/DialingCodeDropdown.tsx -------------------------------------------------------------------------------- /src/components/DialingCodeDropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/DialingCodeDropdown/index.ts -------------------------------------------------------------------------------- /src/components/Header/Header.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Header/Header.style.ts -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Header/index.ts -------------------------------------------------------------------------------- /src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Icon.tsx -------------------------------------------------------------------------------- /src/components/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/IconButton.tsx -------------------------------------------------------------------------------- /src/components/Illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Illustration.tsx -------------------------------------------------------------------------------- /src/components/Indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Indicator.tsx -------------------------------------------------------------------------------- /src/components/IndicatorDot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/IndicatorDot.tsx -------------------------------------------------------------------------------- /src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Input.tsx -------------------------------------------------------------------------------- /src/components/LabeledInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/LabeledInfo.tsx -------------------------------------------------------------------------------- /src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Loading.tsx -------------------------------------------------------------------------------- /src/components/Notification/Notification.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Notification/Notification.style.ts -------------------------------------------------------------------------------- /src/components/Notification/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Notification/Notification.tsx -------------------------------------------------------------------------------- /src/components/Notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Notification/index.ts -------------------------------------------------------------------------------- /src/components/NotificationHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/NotificationHandler.tsx -------------------------------------------------------------------------------- /src/components/NumberPad/NumberPad.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/NumberPad/NumberPad.style.ts -------------------------------------------------------------------------------- /src/components/NumberPad/NumberPad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/NumberPad/NumberPad.tsx -------------------------------------------------------------------------------- /src/components/NumberPad/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/NumberPad/index.ts -------------------------------------------------------------------------------- /src/components/OnboardingSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/OnboardingSlider.tsx -------------------------------------------------------------------------------- /src/components/OnboardingSliderItem/OnboardingSliderItem.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/OnboardingSliderItem/OnboardingSliderItem.style.ts -------------------------------------------------------------------------------- /src/components/OnboardingSliderItem/OnboardingSliderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/OnboardingSliderItem/OnboardingSliderItem.tsx -------------------------------------------------------------------------------- /src/components/OnboardingSliderItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/OnboardingSliderItem/index.tsx -------------------------------------------------------------------------------- /src/components/PinLayout/PinLayout.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/PinLayout/PinLayout.style.ts -------------------------------------------------------------------------------- /src/components/PinLayout/PinLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/PinLayout/PinLayout.tsx -------------------------------------------------------------------------------- /src/components/PinLayout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/PinLayout/index.ts -------------------------------------------------------------------------------- /src/components/PressableText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/PressableText.tsx -------------------------------------------------------------------------------- /src/components/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/ProgressBar.tsx -------------------------------------------------------------------------------- /src/components/SingleNumberInput/SingleNumberInput.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/SingleNumberInput/SingleNumberInput.style.ts -------------------------------------------------------------------------------- /src/components/SingleNumberInput/SingleNumberInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/SingleNumberInput/SingleNumberInput.tsx -------------------------------------------------------------------------------- /src/components/SingleNumberInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/SingleNumberInput/index.ts -------------------------------------------------------------------------------- /src/components/StyledButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/StyledButton.tsx -------------------------------------------------------------------------------- /src/components/StyledInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/StyledInput.tsx -------------------------------------------------------------------------------- /src/components/StyledPressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/StyledPressable.tsx -------------------------------------------------------------------------------- /src/components/StyledText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/StyledText.tsx -------------------------------------------------------------------------------- /src/components/Transaction/Transaction.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Transaction/Transaction.style.ts -------------------------------------------------------------------------------- /src/components/Transaction/Transaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Transaction/Transaction.tsx -------------------------------------------------------------------------------- /src/components/Transaction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/Transaction/index.ts -------------------------------------------------------------------------------- /src/components/TransactionFilter/TransactionFilter.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/TransactionFilter/TransactionFilter.style.ts -------------------------------------------------------------------------------- /src/components/TransactionFilter/TransactionFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/TransactionFilter/TransactionFilter.tsx -------------------------------------------------------------------------------- /src/components/TransactionFilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/TransactionFilter/index.ts -------------------------------------------------------------------------------- /src/components/assets/icons/Afghanistan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Afghanistan.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Albania.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Albania.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/AlignRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/AlignRight.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Angola.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Angola.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Argentine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Argentine.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Armenia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Armenia.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/ArrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/ArrowRight.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Australia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Australia.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Azerbaijan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Azerbaijan.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Bitcoin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Bitcoin.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/BitcoinCash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/BitcoinCash.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Box.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Check.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/ChevronDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/ChevronDown.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/ChevronLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/ChevronLeft.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Copy.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Dash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Dash.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Delete.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Deposit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Deposit.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Eos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Eos.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Ethereum.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Ethereum.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Exchange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Exchange.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/ExternalLink.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Eye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Eye.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/EyeOff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/EyeOff.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Filter.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Home.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Litecoin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Litecoin.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/LogOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/LogOut.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Minimize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Minimize.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Monero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Monero.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Neo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Neo.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Omisego.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Omisego.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Plus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Plus.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/PlusCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/PlusCircle.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Reject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Reject.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Repeat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Repeat.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Ripple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Ripple.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Send.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Share.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/StatusDeposited.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/StatusDeposited.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/StatusExchanged.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/StatusExchanged.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/StatusPending.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/StatusPending.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/StatusRejected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/StatusRejected.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/StatusSent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/StatusSent.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/StatusWithdrawn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/StatusWithdrawn.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Stellar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Stellar.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Success.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Swap.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/UnitedStates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/UnitedStates.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/User.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/Withdrawal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/Withdrawal.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/WithdrawalSolid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/WithdrawalSolid.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/X.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/X.tsx -------------------------------------------------------------------------------- /src/components/assets/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/icons/index.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/AstroKitten.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/AstroKitten.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Desktop.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Email.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Grow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Grow.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Idea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Idea.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Login.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Logo.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Mobile.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Office.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Office.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Privacy.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Running.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Running.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Scan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Scan.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Security.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Security.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Social.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Social.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Success.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/Wondering.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/Wondering.tsx -------------------------------------------------------------------------------- /src/components/assets/illustrations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/assets/illustrations/index.tsx -------------------------------------------------------------------------------- /src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/components/index.tsx -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/onboardingSliderData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/constants/onboardingSliderData.ts -------------------------------------------------------------------------------- /src/context/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/context/index.tsx -------------------------------------------------------------------------------- /src/navigation/BottomTab/BottomTabNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/BottomTab/BottomTabNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/BottomTab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/BottomTab/index.tsx -------------------------------------------------------------------------------- /src/navigation/KnowYourCustomer/KYCNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/KnowYourCustomer/KYCNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/PreAuth/CCVPNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/PreAuth/CCVPNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/PreAuth/LoginNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/PreAuth/LoginNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/PreAuth/PreAuthNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/PreAuth/PreAuthNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/PreAuth/SignUpNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/PreAuth/SignUpNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/PreAuth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/PreAuth/index.tsx -------------------------------------------------------------------------------- /src/navigation/Profile/2FANavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/Profile/2FANavigator.tsx -------------------------------------------------------------------------------- /src/navigation/Profile/PNVNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/Profile/PNVNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/Profile/ProfileNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/Profile/ProfileNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/Profile/SecurityNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/Profile/SecurityNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/RootNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/RootNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/SendMoneyToYourFriend/SMTYFNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/SendMoneyToYourFriend/SMTYFNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/Wallet/WalletNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/Wallet/WalletNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/Withdrawal/WithdrawalNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/Withdrawal/WithdrawalNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/navigation/index.tsx -------------------------------------------------------------------------------- /src/screens/BottomTab/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/BottomTab/Overview.tsx -------------------------------------------------------------------------------- /src/screens/BottomTab/Portfolio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/BottomTab/Portfolio.tsx -------------------------------------------------------------------------------- /src/screens/BottomTab/Transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/BottomTab/Transactions.tsx -------------------------------------------------------------------------------- /src/screens/BottomTab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/BottomTab/index.tsx -------------------------------------------------------------------------------- /src/screens/KnowYourCustomer/DocumentVerification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/KnowYourCustomer/DocumentVerification.tsx -------------------------------------------------------------------------------- /src/screens/KnowYourCustomer/Done.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/KnowYourCustomer/Done.tsx -------------------------------------------------------------------------------- /src/screens/KnowYourCustomer/NationalIDScan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/KnowYourCustomer/NationalIDScan.tsx -------------------------------------------------------------------------------- /src/screens/KnowYourCustomer/PersonalInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/KnowYourCustomer/PersonalInformation.tsx -------------------------------------------------------------------------------- /src/screens/KnowYourCustomer/ScanBackSide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/KnowYourCustomer/ScanBackSide.tsx -------------------------------------------------------------------------------- /src/screens/KnowYourCustomer/ScanFrontSide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/KnowYourCustomer/ScanFrontSide.tsx -------------------------------------------------------------------------------- /src/screens/KnowYourCustomer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/KnowYourCustomer/index.tsx -------------------------------------------------------------------------------- /src/screens/PreAuth/CreateConfirmVerifyPin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/CreateConfirmVerifyPin.tsx -------------------------------------------------------------------------------- /src/screens/PreAuth/LoginScreens/CheckYourEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/LoginScreens/CheckYourEmail.tsx -------------------------------------------------------------------------------- /src/screens/PreAuth/LoginScreens/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/LoginScreens/ForgotPassword.tsx -------------------------------------------------------------------------------- /src/screens/PreAuth/LoginScreens/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/LoginScreens/Login.tsx -------------------------------------------------------------------------------- /src/screens/PreAuth/LoginScreens/NewPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/LoginScreens/NewPassword.tsx -------------------------------------------------------------------------------- /src/screens/PreAuth/LoginScreens/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/LoginScreens/index.tsx -------------------------------------------------------------------------------- /src/screens/PreAuth/Onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/Onboarding.tsx -------------------------------------------------------------------------------- /src/screens/PreAuth/SignUp/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/SignUp/SignUp.tsx -------------------------------------------------------------------------------- /src/screens/PreAuth/SignUp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/SignUp/index.ts -------------------------------------------------------------------------------- /src/screens/PreAuth/Welcome/Welcome.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/Welcome/Welcome.style.ts -------------------------------------------------------------------------------- /src/screens/PreAuth/Welcome/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/Welcome/Welcome.tsx -------------------------------------------------------------------------------- /src/screens/PreAuth/Welcome/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/Welcome/index.ts -------------------------------------------------------------------------------- /src/screens/PreAuth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/PreAuth/index.ts -------------------------------------------------------------------------------- /src/screens/Profile/ChooseCurrency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/ChooseCurrency.tsx -------------------------------------------------------------------------------- /src/screens/Profile/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/Overview.tsx -------------------------------------------------------------------------------- /src/screens/Profile/PersonalInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/PersonalInformation.tsx -------------------------------------------------------------------------------- /src/screens/Profile/PhoneNumberVerification/ChooseDialingCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/PhoneNumberVerification/ChooseDialingCode.tsx -------------------------------------------------------------------------------- /src/screens/Profile/PhoneNumberVerification/Done.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/PhoneNumberVerification/Done.tsx -------------------------------------------------------------------------------- /src/screens/Profile/PhoneNumberVerification/EnterPhoneNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/PhoneNumberVerification/EnterPhoneNumber.tsx -------------------------------------------------------------------------------- /src/screens/Profile/PhoneNumberVerification/VerifyCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/PhoneNumberVerification/VerifyCode.tsx -------------------------------------------------------------------------------- /src/screens/Profile/PhoneNumberVerification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/PhoneNumberVerification/index.tsx -------------------------------------------------------------------------------- /src/screens/Profile/SecurityScreens/2FAScreens/Confirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/SecurityScreens/2FAScreens/Confirmation.tsx -------------------------------------------------------------------------------- /src/screens/Profile/SecurityScreens/2FAScreens/TFA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/SecurityScreens/2FAScreens/TFA.tsx -------------------------------------------------------------------------------- /src/screens/Profile/SecurityScreens/2FAScreens/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/SecurityScreens/2FAScreens/index.tsx -------------------------------------------------------------------------------- /src/screens/Profile/SecurityScreens/ChangePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/SecurityScreens/ChangePassword.tsx -------------------------------------------------------------------------------- /src/screens/Profile/SecurityScreens/ChangePin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/SecurityScreens/ChangePin.tsx -------------------------------------------------------------------------------- /src/screens/Profile/SecurityScreens/NewPin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/SecurityScreens/NewPin.tsx -------------------------------------------------------------------------------- /src/screens/Profile/SecurityScreens/Security.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/SecurityScreens/Security.tsx -------------------------------------------------------------------------------- /src/screens/Profile/SecurityScreens/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/SecurityScreens/index.tsx -------------------------------------------------------------------------------- /src/screens/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Profile/index.tsx -------------------------------------------------------------------------------- /src/screens/SendMoneyToFriend/AddMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/SendMoneyToFriend/AddMessage.tsx -------------------------------------------------------------------------------- /src/screens/SendMoneyToFriend/Amount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/SendMoneyToFriend/Amount.tsx -------------------------------------------------------------------------------- /src/screens/SendMoneyToFriend/ChooseRecipient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/SendMoneyToFriend/ChooseRecipient.tsx -------------------------------------------------------------------------------- /src/screens/SendMoneyToFriend/Confirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/SendMoneyToFriend/Confirmation.tsx -------------------------------------------------------------------------------- /src/screens/SendMoneyToFriend/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/SendMoneyToFriend/index.tsx -------------------------------------------------------------------------------- /src/screens/Wallet/AllAssets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Wallet/AllAssets.tsx -------------------------------------------------------------------------------- /src/screens/Wallet/AllTransactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Wallet/AllTransactions.tsx -------------------------------------------------------------------------------- /src/screens/Wallet/CoinDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Wallet/CoinDetails.tsx -------------------------------------------------------------------------------- /src/screens/Wallet/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Wallet/Overview.tsx -------------------------------------------------------------------------------- /src/screens/Wallet/TransactionDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Wallet/TransactionDetails.tsx -------------------------------------------------------------------------------- /src/screens/Wallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Wallet/index.tsx -------------------------------------------------------------------------------- /src/screens/Withdrawal/Amount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Withdrawal/Amount.tsx -------------------------------------------------------------------------------- /src/screens/Withdrawal/Confirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Withdrawal/Confirmation.tsx -------------------------------------------------------------------------------- /src/screens/Withdrawal/EnterAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Withdrawal/EnterAddress.tsx -------------------------------------------------------------------------------- /src/screens/Withdrawal/ScanQRCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Withdrawal/ScanQRCode.tsx -------------------------------------------------------------------------------- /src/screens/Withdrawal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/screens/Withdrawal/index.tsx -------------------------------------------------------------------------------- /src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/styles/index.ts -------------------------------------------------------------------------------- /src/styles/spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/styles/spacing.ts -------------------------------------------------------------------------------- /src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/theme/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/authValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/utils/authValidation.ts -------------------------------------------------------------------------------- /src/utils/capitalizedCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/utils/capitalizedCase.ts -------------------------------------------------------------------------------- /src/utils/getCoinSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/utils/getCoinSymbol.ts -------------------------------------------------------------------------------- /src/utils/getCountryName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/utils/getCountryName.ts -------------------------------------------------------------------------------- /src/utils/getTransactionStatusColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/utils/getTransactionStatusColor.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/isIPhoneX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/utils/isIPhoneX.ts -------------------------------------------------------------------------------- /src/utils/scaleSpacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/utils/scaleSpacing.ts -------------------------------------------------------------------------------- /src/utils/useAlert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/utils/useAlert.ts -------------------------------------------------------------------------------- /src/utils/useKeyboardDidShow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/src/utils/useKeyboardDidShow.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihcandev/react-native-crypto-wallet-app/HEAD/yarn.lock --------------------------------------------------------------------------------