src
├── components
│ ├── AspireLogo.tsx
│ ├── CardInformation.tsx
│ ├── ConfigurationItem.tsx
│ ├── CurrencySymbol.tsx
│ ├── EditScreenInfo.tsx
│ ├── NotFoundScreen.tsx
│ ├── SocialButtons.tsx
│ ├── SpendingLimitComp.tsx
│ ├── StyledText.tsx
│ ├── Themed.tsx
│ ├── TouchableBack.tsx
│ ├── TouchableMoneyLimit.tsx
│ ├── TouchableShowHideCard.tsx
├── constants
│ ├── Colors.ts
│ └── Layout.ts
├── features
│ ├── card
│ ├── localization
│ ├── scan
│ └── tabs
├── hooks
│ ├── useCachedResources.ts
│ ├── useColorScheme.ts
│ └── useColorScheme.web.ts
├── models
│ ├── CardHolder.spec.ts
│ ├── CardHolder.ts
│ ├── CardState.ts
│ ├── Configuration.ts
│ ├── ErrorMessage.ts
│ ├── MoneyLimit.ts
│ └── SpendingLimit.ts
├── navigation
│ ├── BottomTabNavigator.tsx
│ ├── LinkingConfiguration.ts
│ ├── RootNavigation.tsx
│ └── index.tsx
├── network
│ ├── index.ts
│ └── x-fetch.ts
├── sevices
│ ├── card-api-client.ts
│ ├── index.ts
│ ├── logger-service.ts
│ └── types.d.ts
├── store
│ ├── index.ts
│ ├── root-action.ts
│ ├── root-epic.ts
│ ├── root-reducer.ts
│ └── types.d.ts
├── types.tsx
└── utils
└── fmtNumber.ts