nudge_spinthewheelv2 1.0.12 nudge_spinthewheelv2: ^1.0.12 copied to clipboard
Nudge Spin The Wheel Package
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add nudge_spinthewheelv2
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
nudge_spinthewheelv2: ^1.0.12
copied to clipboard
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:nudge_spinthewheelv2/domain/entities/rewardentity.dart';
import 'package:nudge_spinthewheelv2/domain/entities/spinthewheel.entity.dart';
import 'package:nudge_spinthewheelv2/flutter_fortune_wheel.dart';
import 'package:nudge_spinthewheelv2/models/simulatespin.dart';
import 'package:nudge_spinthewheelv2/models/submitspinresult.dart';
import 'package:nudge_spinthewheelv2/nudge_flutter_spinthewheel_v2.dart';
import 'package:nudge_spinthewheelv2/screens/betterlucknexttime.dart';
import 'package:nudge_spinthewheelv2/screens/congratulationsscreen.dart';
import 'package:nudge_spinthewheelv2/screens/home.dart';
import 'package:nudge_spinthewheelv2/screens/nodata.dart';
import 'package:nudge_spinthewheelv2/widgets/appbar/appbar.dart';
import 'package:nudge_spinthewheelv2/widgets/bottomnavbar/bottomnavbar_single.dart';
copied to clipboard