This is a clone of Windows Calculator.
├── ...
├── android # Android Code
├── assets # Assets Folder
├── build
├── ios # IOS Code
├── lib
│ ├── responsive # Responsive Widgets
| | |── function_bodies
| | | |── calculator # Calculator Section
| | | | |── date_calculation.dart # Date Calculation
| | | | |── graphing.dart # Graphing
| | | | |── programmer.dart # Programmer
| | | | |── scientific.dart # Scientific
| | | | └── standard.dart # Standard
| | | |── convertor # Convertor Section
| | | | |── angle.dart # Angle
| | | | |── area.dart # Area
| | | | |── currency.dart # Currency
| | | | |── data.dart # Data
| | | | |── energy.dart # Energy
| | | | |── length.dart # Length
| | | | |── power.dart # Power
| | | | |── pressure.dart # Pressure
| | | | |── speed.dart # Speed
| | | | |── temperature.dart # Temperature
| | | | |── time.dart # Time
| | | | |── volume.dart # Volume
| | | | └── weight_and_mass.dart # Weight and Mass
| | | |── drawer_model.dart # Drawer Item Model
| | | |── calculator_body.dart # Calculator Section
| | | └── history_body.dart # History Section
| | |── layouts
| | | |── desktop_layout.dart # Desktop Widget
| | | |── mobile_layout.dart # Mobile Widget
| | | └── tablet_layout.dart # Tablet Widget
| | |── about.dart
| | |── dimensions.dart # Dimensions for Different Screen Sizes
| | └── responsive_config.dart # Configuring Responsive Conditions
│ ├── homepage.dart # Home Page
│ └── main.dart # Main Dart File
├── linux # Linux Code
├── macos # MacOS Code
├── test
│ └── widget_test.dart # Test
├── web # Web Code
├── windows # Windows Code
├── pubspec.yaml
├── README.md
├── simple_calculator.iml
└── ...
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.