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

A new Flutter package project which help us to creating walkthrough of their app

flutter_nabeel_walkthrough #

A new Flutter package project. which help you to creating animated walkthrough

Usage #

Example

To use this package:

    dependencies:
        flutter:
            sdk: flutter
        flutter_nabeel_walkthrough:

How To Use #

class TestScreen extends StatelessWidget {
  final List<NabeelWalkThrough> list = [
    NabeelWalkThrough(
      title: "Title 1",
      content: "Content 1",
      imageIcon: Icon(Icons.restaurant_menu),
    ),
    NabeelWalkThrough(
      title: "Title 2",
      content: "Content 2",
      imageIcon: Icon(Icons.search),
    ),
    NabeelWalkThrough(
      title: "Title 3",
      content: "Content 3",
      imageIcon: Icon(Icons.shopping_cart),
    ),
    NabeelWalkThrough(
      title: "Title 4",
      content: "Content 4",
      imageIcon: Icon(Icons.verified_user),
    )
  ];
  @override
  Widget build(BuildContext context) {
    return IntroScreen(
      walkthroughList: list,
      pageRoute: new MaterialPageRoute(builder: (context)=> new TestScreen()),
    );
  }
}

Getting Started #

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package project which help us to creating walkthrough of their app

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_nabeel_walkthrough