introduction_slider 1.0.0 copy "introduction_slider: ^1.0.0" to clipboard
introduction_slider: ^1.0.0 copied to clipboard

Introduction/Onboarding slider package for flutter application with several features.

example/example.md

import 'package:flutter/material.dart';
import 'package:introduction_slider/introduction_slider.dart';

void main() {
  runApp(
    const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Home(),
    ),
  );
}

class Home extends StatelessWidget {
  const Home({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const Scaffold(
      body: IntroductionSlider(
        onDone: SecondPage(),
        items: [
          IntroductionSliderItem(
            image: FlutterLogo(),
            title: "Introduction Slider 1",
            description: "This is a description of introduction slider 1.",
          ),
          IntroductionSliderItem(
            image: FlutterLogo(),
            title: "Introduction Slider 2",
            description: "This is a description of introduction slider 2.",
          ),
          IntroductionSliderItem(
            image: FlutterLogo(),
            title: "Introduction Slider 3",
            description: "This is a description of introduction slider 3.",
          ),
        ],
      ),
    );
  }
}
96
likes
150
pub points
89%
popularity

Publisher

verified publisherrahulchouhan.me

Introduction/Onboarding slider package for flutter application with several features.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on introduction_slider