Skip to content

Instantly share code, notes, and snippets.

@xmanemran
Last active September 12, 2020 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xmanemran/031dfbd3509a866fd1a5f9b18dfa488d to your computer and use it in GitHub Desktop.
Save xmanemran/031dfbd3509a866fd1a5f9b18dfa488d to your computer and use it in GitHub Desktop.
app
├── actions
│   ├── index.js
│   └── registration.js
├── i18n
│   ├── index.js
│   └── locales
│   └── en.js
├── icons
│   └── back
│   ├── back.png
│   └── back@2x.png
├── index.js
├── pages
│   ├── Login
│   │   └── index.js
│   ├── LoginCodeVerification
│   │   └── index.js
│   ├── Splash
│   │   └── index.js
│   ├── index.js
│   └── routes.js
├── reducers
│   ├── index.js
│   └── registration.js
├── routes
│   ├── api.js
│   ├── index.js
│   └── settings.js
├── screens
│   ├── Dashboard
│   │   ├── BottomNavigation
│   │   ├── Index
│   │   │   ├── BottomNavigation
│   │   │   │   ├── NavigationItem
│   │   │   │   │   └── index.js
│   │   │   │   ├── data.js
│   │   │   │   ├── images
│   │   │   │   │   └── bottom_navigation_background.png
│   │   │   │   └── index.js
│   │   │   ├── HalfCircle.js
│   │   │   └── index.js
│   │   ├── Notifications
│   │   │   ├── NotificationsRowItem
│   │   │   │   └── index.js
│   │   │   ├── data.js
│   │   │   ├── images
│   │   │   │   ├── empty.png
│   │   │   │   ├── empty@2x.png
│   │   │   │   └── empty@3x.png
│   │   │   └── index.js
│   │   ├── TransferMoney
│   │   │   ├── Payment
│   │   │   │   ├── PaymentMethod
│   │   │   │   │   ├── PayWithNewCard
│   │   │   │   │   │   └── index.js
│   │   │   │   │   ├── PayWithSaveCard
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   └── visa.png
│   │   │   │   │   │   └── index.js
│   │   │   │   │   └── index.js
│   │   │   │   ├── TotalToPay.js
│   │   │   │   └── index.js
│   │   │   ├── SelectRecipients
│   │   │   │   ├── List
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── empty.png
│   │   │   │   │   │   ├── empty@2x.png
│   │   │   │   │   │   └── empty@3x.png
│   │   │   │   │   └── index.js
│   │   │   │   └── index.js
│   │   │   ├── SendMoney
│   │   │   │   └── index.js
│   │   │   ├── TransferPreview
│   │   │   │   ├── AmountRowItem.js
│   │   │   │   ├── TransactionBreakDown.js
│   │   │   │   └── index.js
│   │   │   └── index.js
│   │   └── routes.js
│   ├── More
│   │   ├── ClaimCharter
│   │   │   └── index.js
│   │   ├── Index
│   │   │   ├── AppAbout
│   │   │   │   ├── data.js
│   │   │   │   └── index.js
│   │   │   ├── General
│   │   │   │   ├── data.js
│   │   │   │   └── index.js
│   │   │   └── index.js
│   │   ├── LanguageSettings
│   │   │   ├── LanguageRowItem
│   │   │   │   └── index.js
│   │   │   ├── data.js
│   │   │   └── index.js
│   │   ├── NotificationSettings
│   │   │   ├── General
│   │   │   │   ├── data.js
│   │   │   │   └── index.js
│   │   │   ├── NotificationRowItem
│   │   │   │   └── index.js
│   │   │   ├── Other
│   │   │   │   ├── data.js
│   │   │   │   └── index.js
│   │   │   └── index.js
│   │   ├── PrivacyPolicy
│   │   │   └── index.js
│   │   ├── TermsCondition
│   │   │   └── index.js
│   │   └── routes.js
│   ├── MyAccount
│   │   ├── MyDocuments
│   │   │   ├── Index
│   │   │   │   ├── data.js
│   │   │   │   └── index.js
│   │   │   ├── MyEmploymentContract
│   │   │   │   └── index.js
│   │   │   ├── MyIdentityDocument
│   │   │   │   └── index.js
│   │   │   ├── MyIdentityDocument\ copy
│   │   │   │   └── index.js
│   │   │   ├── MyLetterFromEmployer
│   │   │   │   └── index.js
│   │   │   ├── MyProofOfAddress
│   │   │   │   └── index.js
│   │   │   ├── MySelfiePhoto
│   │   │   │   └── index.js
│   │   │   ├── My_3MonthSalaryProof
│   │   │   │   └── index.js
│   │   │   ├── components
│   │   │   │   └── UploadAndPreview
│   │   │   │   ├── index.js
│   │   │   │   └── util.js
│   │   │   └── routes.js
│   │   ├── MyProfile
│   │   │   └── index.js
│   │   ├── Summary
│   │   │   ├── AccountService
│   │   │   │   ├── data.js
│   │   │   │   └── index.js
│   │   │   ├── ProfileSummary.js
│   │   │   └── index.js
│   │   └── routes.js
│   ├── OperationHistory
│   │   ├── Details
│   │   │   ├── Recipient.js
│   │   │   └── index.js
│   │   ├── List
│   │   │   ├── images
│   │   │   │   ├── empty.png
│   │   │   │   ├── empty@2x.png
│   │   │   │   └── empty@3x.png
│   │   │   └── index.js
│   │   └── routes.js
│   ├── Recipients
│   │   ├── Add
│   │   │   └── index.js
│   │   ├── Details
│   │   │   ├── RecentTransfer.js
│   │   │   └── index.js
│   │   ├── List
│   │   │   ├── images
│   │   │   │   ├── empty.png
│   │   │   │   ├── empty@2x.png
│   │   │   │   └── empty@3x.png
│   │   │   └── index.js
│   │   ├── Update
│   │   │   └── index.js
│   │   └── routes.js
│   └── routes.js
├── services
│   ├── const.js
│   └── https.js
├── settings
│   └── theme
│   ├── colors
│   │   └── index.js
│   └── fonts
│   └── index.js
├── shared
│   ├── components
│   │   ├── BottomSheet
│   │   │   └── index.js
│   │   ├── Box
│   │   │   ├── Actions
│   │   │   │   ├── Action.js
│   │   │   │   └── index.js
│   │   │   ├── Item
│   │   │   │   ├── $1.js
│   │   │   │   └── index.js
│   │   │   ├── Rows
│   │   │   │   ├── index.js
│   │   │   │   └── row.js
│   │   │   ├── Title
│   │   │   │   └── index.js
│   │   │   ├── __tests__
│   │   │   │   ├── __snapshots__
│   │   │   │   │   └── index.js.snap
│   │   │   │   └── index.js
│   │   │   ├── const.js
│   │   │   └── index.js
│   │   ├── Button
│   │   │   └── index.js
│   │   ├── CardInput
│   │   │   ├── components
│   │   │   │   ├── fields
│   │   │   │   │   ├── CardNumber.js
│   │   │   │   │   ├── Cvv.js
│   │   │   │   │   └── ExpiryDate.js
│   │   │   │   └── utils
│   │   │   │   ├── constants.js
│   │   │   │   ├── formatter.js
│   │   │   │   ├── http.js
│   │   │   │   ├── index.html
│   │   │   │   └── validator.js
│   │   │   └── index.js
│   │   ├── CountryInput
│   │   │   └── index.js
│   │   ├── CurrencyInput
│   │   │   ├── CurrencyPicker.js
│   │   │   └── index.js
│   │   ├── FileSelector
│   │   │   ├── SourceTypeRowItem
│   │   │   │   └── index.js
│   │   │   ├── data.js
│   │   │   └── index.js
│   │   ├── FormControl
│   │   │   └── index.js
│   │   ├── FormItem
│   │   │   └── index.js
│   │   ├── HeaderBackImage
│   │   │   └── index.js
│   │   ├── HeaderLeft
│   │   │   └── index.js
│   │   ├── Icon
│   │   │   ├── config.json
│   │   │   └── index.js
│   │   ├── Label
│   │   │   └── index.js
│   │   ├── Layout
│   │   │   ├── HalfCircle.js
│   │   │   └── index.js
│   │   ├── List
│   │   │   ├── Country
│   │   │   │   ├── index.js
│   │   │   │   └── item.js
│   │   │   ├── DeliveryModeSelect
│   │   │   │   ├── data.js
│   │   │   │   └── index.js
│   │   │   ├── DeliveryTimeSelect
│   │   │   │   ├── data.js
│   │   │   │   └── index.js
│   │   │   ├── Dynamic
│   │   │   │   └── index.js
│   │   │   ├── RelationSelect
│   │   │   │   ├── data.js
│   │   │   │   └── index.js
│   │   │   ├── Static
│   │   │   │   └── index.js
│   │   │   ├── components
│   │   │   │   ├── Empty
│   │   │   │   │   └── index.js
│   │   │   │   ├── SearchInput
│   │   │   │   │   └── index.js
│   │   │   │   ├── Separator
│   │   │   │   │   └── index.js
│   │   │   │   └── index.js
│   │   │   └── index.js
│   │   ├── Loading
│   │   │   ├── OverlayDownload
│   │   │   │   └── index.js
│   │   │   ├── OverlayUpload
│   │   │   │   └── index.js
│   │   │   └── index.js
│   │   ├── PhoneNumberInput
│   │   │   ├── CallingCodePicker.js
│   │   │   └── index.js
│   │   ├── README.md
│   │   ├── SelectInput
│   │   │   └── index.js
│   │   ├── Text
│   │   │   └── index.js
│   │   ├── TextInput
│   │   │   └── index.js
│   │   ├── TouchableOpacity
│   │   │   └── index.js
│   │   ├── UploadBox
│   │   │   ├── ImagePreview
│   │   │   │   └── index.js
│   │   │   └── index.js
│   │   ├── UploadProfilePhoto
│   │   │   └── index.js
│   │   ├── VerificationCodeInput
│   │   │   └── index.js
│   │   ├── WebView
│   │   │   └── index.js
│   │   ├── db
│   │   │   ├── countries.json
│   │   │   ├── data.json
│   │   │   └── index.js
│   │   └── index.js
│   └── screens
│   ├── CallingCodeList
│   │   └── index.js
│   ├── CountryList
│   │   └── index.js
│   ├── CurrencyList
│   │   └── index.js
│   ├── index.js
│   └── routes.js
└── store.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment