Installing Flutter

Flutter and Dart are used for building high-performance, cross-platform mobile applications. They allow for rapid development and consistent UI across different platforms (iOS and Android).

Setup and Integration:

Make sure your window system meets the requirements below:

Requirement
Minimum
Recommended

x86_64 CPU Cores

4

8

Memory in GB

8

16

Display resolution in pixels

WXGA (1366 x 768)

FHD (1920 x 1080)

Free disk space in GB

11.0

60.0

For MacOS

Make sure your macOS meets the requirements below:

Requirement
Minimum
Recommended

CPU Cores

4

8

Memory in GB

8

16

Display resolution in pixels

WXGA (1366 x 768)

FHD (1920 x 1080)

Free disk space in GB

44.0

70.0

Software Requirements

  • Dart

  • Flutter SDK

  • Visual Studio Code | Android Studio (This are the environments recommended for ewalletly devs)

  • Git for Windows

  • Xcode 15 for MacOS

  • CocoaPods for MacOS

Note: To get the Flutter SDK and other required softwares, see the flutter docs. Choose the right operating system for your computer.

After Installing Flutter SDK, Run the command below:

flutter doctor

Create a new Flutter Project

flutter create ewalletly_mobile
cd ewalletly_mobile

Add Dependencies

dependencies:
  flutter:
    sdk: flutter
  http: ^0.13.3
  provider: ^5.0.0
  ...

Last updated