Exam Time: is a user-friendly mobile application built on React Native, specifically designed to meet the educational requirements of Ethiopian students.
# ExamTime App
This app is a cross-platform application built using React Native and TypeScript, designed to help high school students in Ethiopia prepare for their national exams. The app provides access to PDFs, videos, a random exam generator, and all previous national exams for all subjects, and is built for offline use first.
## 📱 Features
- **Offline Access**: Access all study materials without an internet connection.
- **PDFs**: View and download PDFs of study guides and textbooks.
- **Videos**: Watch educational videos tailored to the national exam curriculum.
- **Random Exam Generator**: Generate random exams to practice under test conditions.
- **Previous National Exams**: Access all previous national exams for all subjects.
## 📈 Technologies Used
- **React Native**: For building the cross-platform app.
- **TypeScript**: For type-safe JavaScript code.
- **Redux Toolkit**: For state management.
- **React Navigation**: For navigation and routing.
- **Realm**: For offline data storage.
### APP Screenshots
# Getting Started
> **Note**: Make sure you have completed the React Native - Environment Setup instructions till "Creating a new application" step, before proceeding.
## Step 1: Start the Metro Server
First, you will need to start **Metro**, the JavaScript _bundler_ that ships _with_ React Native.
To start Metro, run the following command from the _root_ of your React Native project:
```bash
# using npm
npm start
# OR using Yarn
yarn start
```
## Step 2: Start your Application
Let Metro Bundler run in its _own_ terminal. Open a _new_ terminal from the _root_ of your React Native project. Run the following command to start your _Android_ or _iOS_ app:
### For Android
```bash
# using npm
npm run android
# OR using Yarn
yarn android
```
### For iOS
```bash
# using npm
npm run ios
# OR using Yarn
yarn ios
```
If everything is set up _correctly_, you should see your new app running in your _Android Emulator_ …