flutter_intro_screen_plus 0.0.5 copy "flutter_intro_screen_plus: ^0.0.5" to clipboard
flutter_intro_screen_plus: ^0.0.5 copied to clipboard

A new Flutter package which helps developers in creating animated walkthrough of their app.

flutter_intro_screen #

A new Flutter package for both android and iOS which helps developers in creating animated walkthrough of their app.

Screenshots #

page1 page2
page1 page2

Usage #

Example

To use this package :

  dependencies:
    flutter:
      sdk: flutter
    flutter_intro_screen_plus:

How to use #

class TestScreen extends StatelessWidget {
 /*here we have a list of walkthroughs which we want to have, 
  each walkthrough have a title,content and an icon.
  */
  final List<IntroCardWidget> list = [
    const IntroCardWidget(
      title: "Title 1",
      content: "Content 1",
      imageIcon: Icons.restaurant_menu,
    ),
    const IntroCardWidget(
      title: "Title 2",
      content: "Content 2",
      imageIcon: Icons.search,
    ),
    const IntroCardWidget(
      title: "Title 3",
      content: "Content 3",
      imageIcon: Icons.shopping_cart,
    ),
    const IntroCardWidget(
      title: "Title 4",
      content: "Content 4",
      imageIcon: Icons.verified_user,
    ),
  ];

  @override
  Widget build(BuildContext context) {
    return IntroScreen(
      walkthroughList: list,
      pageRoute: MaterialPageRoute(builder: (context) => TestScreen()),
    );
  }
}

3
likes
150
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package which helps developers in creating animated walkthrough of their app.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_intro_screen_plus