This app allows you to convert a certain amount of money from EUR to RON and vice versa:
Welcome to the Currency Converter Application! This README file will guide you through the setup and running process for this project.
Before you begin, ensure you have the following installed on your system:
- Flutter SDK (latest stable version)
- Dart SDK (included with Flutter)
- Android Studio (for Android development)
- Xcode (for iOS development, macOS only)
- Visual Studio Code or IntelliJ IDEA (recommended IDEs)
- Git (for version control)
Clone the repository to your local machine using the following command:
git clone https://github.com/PatrickDiallo23/currency-converter.git
Navigate to the project directory:
cd currency-converter
Run the following command to install all the necessary dependencies:
flutter pub get
If you are developing for iOS, make sure you navigate to the ios directory and install the required pods:
cd ios
pod install
cd ..
Make sure you have an Android emulator running or a physical device connected, then run:
flutter run
Ensure that an iOS simulator is running or a physical device is connected, then execute:
flutter run
You can also run the application on the web (Chrome recommended) using:
flutter run -d chrome
To run unit tests for the project, use the following command:
flutter test
If you would like to contribute to this project, please follow these steps:
1. Fork the repository.
2. Create a new branch (git checkout -b feature-branch).
3. Make your changes.
4. Commit your changes (git commit -m 'Add some feature').
5. Push to the branch (git push origin feature-branch).
6. Open a Pull Request.