apoapps_onboarding_screen

Last updated:

0 purchases

apoapps_onboarding_screen Image
apoapps_onboarding_screen Images
Add to Cart

Description:

apoapps onboarding screen

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,

💻 Installation #
You just need to add apoapps_onboarding_screen as a dependency in your pubspec.yaml file.
dependencies:
apoapps_onboarding_screen: ^1.0.3
copied to clipboard
Usage #
Import this class #
import 'package:apoapps_onboarding_screen/sk_onboarding_screen.dart';
copied to clipboard
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'),
];
copied to clipboard
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");
},
),
);
}
copied to clipboard
📃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.
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.