sk_onboarding_screen 1.0.1 copy "sk_onboarding_screen: ^1.0.1" to clipboard
sk_onboarding_screen: ^1.0.1 copied to clipboard

A library that walks a user through multiple on-boarding screens in a simple and easy way

SKOnBoarding Screen #

A library that walks a user through multiple on-boarding screens in a simple and easy way Flutter

GIF #

SKOnBoarding Demo

💻 Installation #

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

dependencies:
sk_onboarding_screen: ^1.0.1
copied to clipboard

Usage #

Import this class #

import 'package:sk_onboarding_screen/sk_onboarding_screen.dart;
copied to clipboard

SKOnboardingModel #

  final pages = [
    SkOnboardingModel(
        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'),
    SkOnboardingModel(
        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'),
    SkOnboardingModel(
        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 SKOnboardingScreen Widget #

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

📃License #

Copyright 2020, Senthil Kumar

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
copied to clipboard
68
likes
30
points
41
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.14 - 2025.03.29

A library that walks a user through multiple on-boarding screens in a simple and easy way

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on sk_onboarding_screen