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

example/example.dart

import 'package:flutter_nabeel_walkthrough/first_pub_package_and_upload.dart';
import 'package:flutter_nabeel_walkthrough/walkthrough.dart';
import 'package:flutter/material.dart';

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()),
    );
  }
}
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