A simple calculator app built using Flutter and Dart that performs basic mathematical operations. The app supports addition, subtraction, multiplication, and division, along with the functionality to delete the last entered digit or clear the screen entirely.
-Basic Operations: Perform addition, subtraction, multiplication, and division. -Delete Functionality: Remove the last digit entered. -Clear Screen: Reset the entire screen to start a new calculation. -Responsive UI: Adaptable to different screen sizes.
Follow these instructions to get a copy of the project up and running on your local machine.
Prerequisites- Flutter SDK
- A code editor like VS Code or Android Studio
-
Clone the repository:
git clone https://github.com/your-username/flutter-calculator-app.git cd flutter-calculator-app
-
Install dependencies:
flutter pub get
-
Run the app:
flutter run
- Use the operation buttons (
+
,-
,×
,÷
) to perform calculations. - The
=
button shows the result. - Use the
DEL
button to delete the last digit. - Press
C
to clear the screen and start a new calculation.
-Dart - Programming language for the app logic
Feel free to submit a pull request if you want to improve this project.
- Fork the project.
- Create your feature branch:
git checkout -b feature/your-feature
- Commit your changes:
git commit -m 'Add some feature'
- Push to the branch:
git push origin feature/your-feature
- Open a pull request.