Installation
Get DWallet up and running on your local machine in minutes.
Prerequisites
Section titled “Prerequisites”Before you begin, ensure you have the following installed:
- Flutter SDK:
^3.10.4or later - Dart SDK: Compatible with your Flutter version
- IDE: VS Code or Android Studio with Flutter/Dart plugins installed
Setup Steps
Section titled “Setup Steps”-
Extract the downloaded package to your desired location.
-
Navigate to the project directory:
Terminal window cd dwallet_ui -
Install Dependencies: Run the following command to fetch all required packages:
Terminal window flutter pub get -
Run the App: Choose your target device (Android/iOS Simulator) and run:
Terminal window flutter run
Project Structure
Section titled “Project Structure”The app uses a clean architecture with the following structure:
/lib├── main.dart # App entry point└── /app ├── /core # Core utilities ├── /di # Dependency injection │ └── /services # Service providers ├── /pages # UI pages ├── /providers # State providers ├── /router # Navigation └── /widgets # Reusable widgets
/packages/dwallet_types # Local data packagePost-Install Check
Section titled “Post-Install Check”If the app launches successfully and you see the onboarding screen, you’re all set!