help_me 0.0.8
help_me: ^0.0.8 copied to clipboard
A package for guide users in flutter app page
HelpMe! #
Add flexiable user guide for pages of your application!
Example:
Usage #
HelpMe.showHelp(
color: Colors.amber.withOpacity(0.2),
gradient: LinearGradient(colors: [
Colors.purple.withOpacity(0.2),
Colors.blue.withOpacity(0.2),
]),items: [
HelpMeItem(
key: keyButton,
shape: const HelpMeRectShape(
borderRadius: BorderRadius.all(Radius.circular(24))),
guideWidget: Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
"Lorem Guide",
style: TextStyle(color: Colors.white),
),
)),
...
], pageContext: context, nextWidget: Text("Next"), skipWidget: Text("Skip"));
Notable References #
- Documentation for Key in flutter
- Documentation for CustomPainter in flutter
- Documentation for CustomClipper in flutter
End #
If you have some suggestion or advice, please open an issue or develop the fix and open a pull request. This will greatly help the improvement of the usability of this project. Thanks.