# Getting Started
# Installation Guide
Add the following dependency into your pubspec.yaml file
dependencies:
getwidget: ^1.1.0
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';

