gone_board 1.0.5 gone_board: ^1.0.5 copied to clipboard
A stylish and animated onboarding screen for your App. It's easy to use light weight and customizable.
This a simple and very lightweight for onboarding screens. It is very easy to use and customize
Preview #
Getting started #
Add the package to your pubspec.yaml
file.
Usage #
Check /example folder for more details
Required parameters:
onFinishedPage
- Main page after onboardingpageController
- PageController for the onboardingitems
- List of GonePage
Scaffold(
body: GoneBoard(
onFiishedPage: Home(),
pageController: PageController(initialPage: 0),
items: [
GonePage(
context,
'assets/onboard_1.png',
"Stop Making \nLose!",
Color(0xFFBD3EA1),
),
]
)
);