Flutter Design 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';

Last Updated: September 27, 2023