···11+**React Native Developer Assessment**
22+33+**Introduction**
44+The purpose of this assignment is to evaluate your familiarity with React Native, mobile development best practices, and to showcase your approach to clean, reusable, and maintainable code. This will also help us understand your sense of design and user experience for mobile applications.
55+66+**Requirement**
77+Create a simple mobile banking application.
88+You can use the provided BankingMockAPI (see README for API details and setup instructions) as a source of data for your application. The app should allow a user to:
99+1010+1. **Authenticate** (login) using credentials.
1111+2. **View a list of their bank accounts** (e.g., checking, savings, etc.).
1212+3. **View transactions** related to each account (display a list of transactions for a selected account). It should include ability to:
1313+ - search
1414+ - sort
1515+ - paginate between transactions
1616+1717+4. **View a list of their bank cards** (optional).
1818+1919+You are free to design the UI as you see fit, but the app should have at least the following screens:
2020+- Login screen
2121+- Accounts overview screen
2222+- Account details/transactions screen
2323+2424+**Architecture**
2525+There are no strict requirements for architecture. Please design your application as you see fit, but focus on:
2626+- Clean, modular, and reusable code
2727+- Mobile development best practices
2828+- State management (your choice: Context, Redux, Redux-Toolkit etc.)
2929+- Clear separation of concerns
3030+3131+**Notes**
3232+- The main technology for this assessment is **React Native**. You may use Expo or bare React Native CLI.
3333+- Use TypeScript for type safety.
3434+- The application should provide a good user experience on both iOS and Android.
3535+- Please include a **README** file that explains your architectural decisions (e.g., why you chose a specific state management solution), instructions on how to run your solution, and details about the NodeJS and NPM/Yarn versions used.
3636+- Please include **unit tests** for at least some key components/hooks/screens.
3737+- Ensure the application runs without errors before submitting.
3838+- The UI should be simple, intuitive, and visually appealing.
3939+4040+**Bonus Points**
4141+- Refresh token before it expires to keep the user logged in
4242+- Add pull-to-refresh or loading indicators where appropriate
4343+- Add "infinite" scroll for transactions
4444+- Add basic input validation and error handling for authentication.
4545+- e2e tests
4646+- Accessibility (voiceover, keyboard navigation, etc.)
4747+- Setup CI/CD
4848+- Feel free to add extra features or polish to demonstrate your skills