onboarding_plus 0.1.1 copy "onboarding_plus: ^0.1.1" to clipboard
onboarding_plus: ^0.1.1 copied to clipboard

You can create a simple onboarding using this package. Just give your pre-selected colors.

This package provide easily create onboarding page.

Features #

You can edit colors and text styles.

Image1 Image2 GIF

Getting started #

Add in your pubspec.yaml file lastest version of onboarding_plus

Usage #

Call this widget in body OnboardingViewer()

@override
  Widget build(BuildContext context) {
    return OnboardingViewer(
      pageList: onboardingList,
      pageWidth: MediaQuery.of(context).size.width, 
      pageHeight: MediaQuery.of(context).size.height, 
      backgroundColor: Colors.black,
      skipButtonColor: Colors.purple,
      skipButtonTextStyle: const TextStyle(color: Colors.white),
      nextButtonTextStyle: const TextStyle(color: Colors.white),
      doneButtonTextStyle: const TextStyle(color: Colors.white),
      deactiveDotColor: Colors.black,
      activatedDotColor: Colors.purple,
      nextButtonColor: Colors.purple,
      onPressedSkip: onPressedSkip,
      onPressedDone: onPressedDone,
      dotSize: Size(12, 12),
      bottomPadding: 110, 
      topPadding: 0,
      borderColor: Colors.purple,
      borderWidth: 1,
    );
  }

Additional information #

For more information you can follow developer on pub.dev

1
likes
100
pub points
0%
popularity

Publisher

verified publishererayhamurlu.com

You can create a simple onboarding using this package. Just give your pre-selected colors.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

dots_indicator, flutter

More

Packages that depend on onboarding_plus