flutter_easy_onboarding 0.0.1 copy "flutter_easy_onboarding: ^0.0.1" to clipboard
flutter_easy_onboarding: ^0.0.1 copied to clipboard

This package used to easily create the onboarding pages without any depencies, and also easy customization of all the text, colors, butto styles, body images etc...

Flutter Onboard Package #

Features #

Easy customization your own style

Getting started #

Add the package to your pubspec.yaml file

flutter pub add flutter_easy_onboarding

in your dart file, import the library

import 'package/flutter_easy_onboarding/flutter_easy_onboarding';

Usage #

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    var number = "";
    return MaterialApp(
      home: Scaffold(
          body: OnBoarding(
              numberOfPages: 3,
              currentPage: 1,
              doneButton: () {

              },
              title: "Test",
              body: "Test Body",
              image: "logo" // images can be added to assets in pubspec.yaml  and only .png files
          )
      ),
    );
  }
}

Parameters #

indicatorActiveColor it shows which page can be hold to highlight, wish you change the active color use the parameter indiacatorDeActiveColor it shows which page can be not selected to highlight, wish you change the active color use the parameter

0
likes
130
pub points
0%
popularity

Publisher

verified publishersukumar.tech

This package used to easily create the onboarding pages without any depencies, and also easy customization of all the text, colors, butto styles, body images etc...

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_easy_onboarding