gone_board 1.0.1
gone_board: ^1.0.1 copied to clipboard
A stylish and animated onboarding screen for your App. It's easy to use light weight and customizable. The core config is already set up for you. Just add your own content and you are good to go.
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),
),
]
)
);