app_tutorial_heyteacher 1.0.9 copy "app_tutorial_heyteacher: ^1.0.9" to clipboard
app_tutorial_heyteacher: ^1.0.9 copied to clipboard

Package for creating onboarding flows for your app to explain the features of the app in a seamless ways to you users (fork by [Hey, Teacher](https://github.com/heyteacher)).

Flutter App Onboarding #

Important

this is an unoffical fork of https://github.com/aikenahac/app_tutorial which contains commits collected in this pull request

roundedRectangle

Usage #

Import the package into your pubspec.yaml

dependencies:
  app_tutorial_heyteacher: ^currentVersion

View the example project to see how to use the package.

Properties #

TutorialItem

Property Description Type Required Default value
globalKey The Global Key of the component you want to focus on GlobalKey yes /
child Widget to show on the screen when this item is active Widget yes /
color Color of the overlay Color? no Color.fromRGBO(0, 0, 0, 0.6)
borderRadius Radius of the border of the higlighted item Radius no Radius.circular(10.0)
radius Radius of the ShapeFocus.oval shape double? no null
shapeFocus Shape of the focus element ShapeFocus.oval, ShapeFocus.square, ShapeFocus.roundedSquare no ShapeFocus.roundedSquare

Tutorial

  • show() - the show () method, receives three parameters, the context, list of tutorial items you created and the onTutorialComplete callback.
Tutorial.showTutorial(context, items, onTutorialComplete: () {
  // Code to be executed after the tutorial ends
  print('Tutorial is complete!');
});
  • skipAll() - the skipAll() method receives the context parameter and ends the onboarding process
Tutorial.skipAll(context);
This package is a separated fork of this package
0
likes
160
points
52
downloads

Documentation

Documentation
API reference

Publisher

unverified uploader

Weekly Downloads

Package for creating onboarding flows for your app to explain the features of the app in a seamless ways to you users (fork by [Hey, Teacher](https://github.com/heyteacher)).

Repository (GitHub)
View/report issues

Topics

#flutter #tutorial

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on app_tutorial_heyteacher