A sleek and responsive iOS-style calculator for desktops, built with Flet.
This project recreates the clean iPhone-like vertical calculator layout, but designed to run as a desktop app with Python β no need for HTML, CSS, or JavaScript.
- π Vertical iOS-inspired design, optimized for desktop use.
- π¨ Smooth, modern UI thanks to Flet.
- β Basic calculator functionality (addition, subtraction, multiplication, division, β¦).
- π» Cross-platform: works on Windows, macOS, Linux.
Copy-paste this in your terminal to get started instantly:
# Make sure Python 3.10+ is installed before running this
# 1. Clone the repository
git clone https://github.com/dev-vaibhav-0/iOS-Calculator.git
# 2. Go into the project directory
cd iOS-Calculator
# 3. (Optional) Create a virtual environment for a clean setup
python3 -m venv .venv
source .venv/bin/activate # On Windows use: .venv\Scripts\activate
# 4. Install dependencies
pip install --upgrade pip
pip install flet
# 5. Run the calculator
python main.py