CalcFlow is a modern and clean calculator application, inspired by the Samsung One UI design, built entirely with Flutter.
- Modern UI: Clean and organized interface.
- Smooth UX: Responsive and intuitive calculation experience.
- Performance: Developed with Flutter for high performance and reliability.
lib/
├── core/ # 🎨 Shared app-wide resources
│ ├── constants/
│ │ └── app_colors.dart # Color palette
│ └── theme/
│ └── app_theme.dart # Dark theme config
└── features/
└── calculator/ # 🧮 Calculator feature
├── logic/ # 🧠 Business logic
│ ├── calculator_logic.dart # Math engine
│ ├── calculator_provider.dart # Riverpod notifier
│ └── calculator_state.dart # App state model
├── screens/ # 📱 UI screens
│ └── calculator_screen.dart
└── widgets/ # 🧩 Reusable components
├── buttons.dart
├── calculator_button.dart
├── keyboard.dart
├── my_drawer.dart
└── my_textfield.dart
- Framework: Flutter
- Language: Dart
- State Management: Riverpod
