Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 768 Bytes

getting-started.md

File metadata and controls

40 lines (27 loc) · 768 Bytes
description
Flutter Tutorial with Getwidget step by step tutorial guide on how to get started and use it in any flutter app or web app project.

Flutter Tutorial with Getwidget

How to install getwidget in your app?

Add the following dependency into your pubspec.yaml file

dependencies:
  getwidget: ^2.0.4

You can install the above dependency by running the following code

with pub:

pub get

with Flutter:

flutter pub get

Alternatively, your editor might support pub get or flutter pub get. Check the docs for your editor to learn more.

Import it:

Now in your Dart code, you can import the components that are necessary for your application

import 'package:getwidget/getwidget.dart';