flutter_onboarding_screen 0.0.1 copy "flutter_onboarding_screen: ^0.0.1" to clipboard
flutter_onboarding_screen: ^0.0.1 copied to clipboard

outdated

A flutter package which help developer in creating a onboarding screens of their app.

flutter onboarding screen #

A new Flutter package for both android and iOS which help developer in creating a onboarding screen of their app.

Screenshots #

Usage #

Example

To use this package :

  dependencies:
    flutter:
      sdk: flutter
    flutter_onboarding_screen:

How to use #

class TestScreen extends StatelessWidget {
    /*here we have a list of OnbordingScreen which we want to have, each OnbordingScreen have a imagePath,title and an desc.
      */
  final List<OnbordingData> list = [
    OnbordingData(
      imagePath: "images/pic11.png",
      title: "Search",
      desc:"Discover restaurants by type of meal, See menus and photos for nearby restaurants and bookmark your favorite places on the go",
    ),
    OnbordingData(
      imagePath: "images/pic12.png",
      title: "Order",
      desc:"Best restaurants delivering to your doorstep, Browse menus and build your order in seconds",
    ),
    OnbordingData(
      imagePath: "images/pic13.png",
      title: "Eat",
      desc:"Explore curated lists of top restaurants, cafes, pubs, and bars in Mumbai, based on trends.",
    ),
  ];

  @override
  Widget build(BuildContext context) {
  //here we need to pass the list and the route for the next page to be opened after this.
    return new IntroScreen(list,MaterialPageRoute(builder: (context) => NextScreen()),
    );
  }
}

Created & Maintained By #

Tushar Nikam (linkedin)

Getting Started #

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

25
likes
0
pub points
81%
popularity

Publisher

unverified uploader

A flutter package which help developer in creating a onboarding screens of their app.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_onboarding_screen