FLUTTER ECOSYSTEM

ratulhasanruhan/gone_board

一個很棒的 Flutter 套件,用於引導畫面

gone_board 專案封面
Stars
2
Forks
1
最近推送(UTC)
2024年12月12日
專案狀態
未封存
Ratul Hasan Ruhan  GitHub avatar
GITHUB User

Ratul Hasan Ruhan ↗

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

AppibriumDhaka, Bangladesh官方網站 ↗
語言C++CMakeDartHTMLCObjective-CSwiftJava

此儲存庫發佈的套件

使用的依賴

依賴清單 5 項

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 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),
       ),
   ] 
  )
);