apoapps_onboarding_screen 1.0.4 copy "apoapps_onboarding_screen: ^1.0.4" to clipboard
apoapps_onboarding_screen: ^1.0.4 copied to clipboard

Add an onboarding screen to your app, this is a fork of SKOnBoardingScreen by senthilece01 (That doesn't work in nullsafety and newer flutter versions))

ApoappsOnBoarding Screen (SKOnBoarding Screen update) #

A library that helps you to make an onboarding screen to your app (Forked from SKonboardingScreen by Senthil Kumar, package that is no longer supported),I changed the name to differentiate them, i forked it because I use it on my own apps (https://apodapps.com/ ) Original package: https://pub.dev/packages/sk_onboarding_screen,

Flutter

💻 Installation #

You just need to add apoapps_onboarding_screen as a dependency in your pubspec.yaml file.

dependencies:
apoapps_onboarding_screen: ^1.0.3

Usage #

Import this class #

import 'package:apoapps_onboarding_screen/sk_onboarding_screen.dart';

ApoappsOnboardingModel #

  final pages = [
    ApoappsOnboardingModel(
        title: 'Choose your item',
        description:
            'Easily find your grocery items and you will get delivery in wide range',
        titleColor: Colors.black,
        descripColor: const Color(0xFF929794),
        imagePath: 'assets/onboarding1.png'),
 ApoappsOnboardingModel(
        title: 'Pick Up or Delivery',
        description:
            'We make ordering fast, simple and free-no matter if you order online or cash',
        titleColor: Colors.black,
        descripColor: const Color(0xFF929794),
        imagePath: 'assets/onboarding2.png'),
 ApoappsOnboardingModel(
        title: 'Pay quick and easy',
        description: 'Pay for order using credit or debit card',
        titleColor: Colors.black,
        descripColor: const Color(0xFF929794),
        imagePath: 'assets/onboarding3.png'),
  ];

Pass it into ApoappsOnboardingScreen Widget #

  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return Scaffold(
      body: ApoappsOnboardingScreen(
        bgColor: Colors.white,
        themeColor: const Color(0xFFf74269),
        pages: pages,
        skipClicked: (value) {
          print("Skip");
        },
        getStartedClicked: (value) {
          print("Get Started");
        },
      ),
    );
  }

📃License #

Copyright <2022> <Alejandro Apodaca Cordova>

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
0
likes
130
pub points
34%
popularity

Publisher

unverified uploader

Add an onboarding screen to your app, this is a fork of SKOnBoardingScreen by senthilece01 (That doesn't work in nullsafety and newer flutter versions))

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on apoapps_onboarding_screen