FLUTTER ECOSYSTEM

ratulhasanruhan/gone_board

A awesome flutter package for OnBoarding Screen

gone_board project cover
Stars
2
Forks
1
Last push (UTC)
Dec 12, 2024
Project status
Active
Ratul Hasan Ruhan  GitHub avatar
GITHUB User

Ratul Hasan Ruhan ↗

Building Meaningful Tech | Software Engineer Specializing in Mobile, AI, and Localized Solutions

AppibriumDhaka, BangladeshOfficial website ↗
LanguagesC++CMakeDartHTMLCObjective-CSwiftJava

Packages published by this repository

Dependencies used

Dependency list 5 items

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

This a simple and very lightweight for onboarding screens. It is very easy to use and customize

Preview

https://i.ibb.co/YRs9vLK/Video-2024-03-22-022518-ezgif-com-video-to-gif-converter.gif

Getting started

Add the package to your pubspec.yaml file.

Usage

Check /example folder for more details

Required parameters:

  • onFinishedPage - Main page after onboarding
  • pageController - PageController for the onboarding
  • items - List of GonePage
Scaffold(
body: GoneBoard(
    onFiishedPage: Home(),
    pageController: PageController(initialPage: 0),
    items: [
      GonePage(
        context,
        'assets/onboard_1.png',
        "Stop Making \nLose!",
        Color(0xFFBD3EA1),
       ),
   ] 
  )
);