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

outdated

A Flutter package for both android and iOS which provides On Boarding Screen.

Use this package for introduction screen like on onboarding.

Installation #

for installation add onboarding_screen package in pubspec.yaml file.

Features #

This is the example of on boarding screen. for starting screen

https://user-images.githubusercontent.com/78218862/183291883-edd54d91-4de6-43fc-980f-d9ec372c96ea.mp4

Getting started #

First of all, add this package in your project pubspec.yaml file. and use for OnBoardingScreen model class and applay other functionality.

Usage #

class MyApp extends StatefulWidget {
    const MyApp({Key? key}) : super(key: key);

    @override
        State<MyApp> createState() => _MyAppState();
    }

class _MyAppState extends State<MyApp> {

    @override
    Widget build(BuildContext context) {
        return OnBoardingScreen(
            onSkip: () {
                debugPrint("On Skip Called....");
            },
            showPrevNextButton: true,
            showIndicator: true,
            backgourndColor: Colors.white,
            activeDotColor: Colors.blue,
            deactiveDotColor: Colors.grey,
            iconColor: Colors.black,
            leftIcon: Icons.arrow_circle_left_rounded,
            rightIcon: Icons.arrow_circle_right_rounded,
            iconSize: 30,
            pages: [
                OnBoardingModel(
                image: Image.asset("assets/images/img1.png"),
                title: "Business Chat",
                body:
                    "First impressions are everything in business, even in chat service. It’s important to show professionalism and courtesy from the start",
                ),
                OnBoardingModel(
                image: Image.asset("assets/images/img3.png"),
                title: "Coffee With Friends",
                body:
                    "When your morning starts with a cup of coffee and you are used to survive the day with the same, then all your Instagram stories and snapchat streaks would stay filled up with coffee pictures",
                ), 
            ],
        );
    }
}


OnBoardingModel(
    image: Image.asset("assets/images/img1.png"),
    title: "Business Chat",
    body:
        "First impressions are everything in business, even in chat service. It’s important to show professionalism and courtesy from the start",
),
24
likes
0
points
22
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for both android and iOS which provides On Boarding Screen.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on onboarding_intro_screen