intro_slider 4.2.1 copy "intro_slider: ^4.2.1" to clipboard
intro_slider: ^4.2.1 copied to clipboard

Flutter Intro Slider is a flutter plugin that helps you make a cool intro for your app

example/lib/main.dart

import 'package:flutter/material.dart';

import 'intro_screen_custom_config.dart';
import 'intro_screen_custom_layout.dart';
import 'intro_screen_default.dart';

void main() => runApp(const MyApp());

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

  static const type = 1;

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: type == 0
          ? IntroScreenDefault()
          : type == 1
              ? IntroScreenCustomConfig()
              : type == 2
                  ? IntroScreenCustomLayout()
                  : IntroScreenDefault(),
      debugShowCheckedModeBanner: false,
    );
  }
}
1123
likes
130
pub points
98%
popularity

Publisher

unverified uploader

Flutter Intro Slider is a flutter plugin that helps you make a cool intro for your app

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on intro_slider