app_walk_through 1.0.4 copy "app_walk_through: ^1.0.4" to clipboard
app_walk_through: ^1.0.4 copied to clipboard

A app walk through library to define or showcase app features to the users.

app_walk_through #

A new Flutter plugin plugins for application walk through.

Getting Started #

Installation #

Add app_walk_through as a dependency in your pubspec.yaml file:

dependencies:
  app_walk_through: ^1.0.4

Usage #

Import the package:

import 'package:app_walk_through/app_walk_through.dart';

Check out the example for a full implementation.

Example #

AppWalkThrough(
  models: [
    AppWalkThroughDataModel(
      title: "Welcome",
      description: "Description here",
      image: "assets/images/img1.jpg",
    ),
  ],
  onNextButtonPressed: () {
    // Navigate to next screen
  },
  onSkipButtonPressed: () {
    // Skip walkthrough
  },
)

Features and Customization #

The AppWalkThrough widget provides several properties for customization:

Property Description
models List of AppWalkThroughDataModel containing title, description, and image assets.
onNextButtonPressed Callback triggered after the last slide's next button is pressed.
onSkipButtonPressed Callback triggered when the skip button is pressed.
titleStyle TextStyle for the slide titles.
descriptionStyle TextStyle for the slide descriptions.
nextButtonColor Color for the forward arrow icon.
skipButtonStyle TextStyle for the skip button text.

package demo #

touch_ripple_effect

contributors #

@Aditya panther

2
likes
160
points
126
downloads

Documentation

API reference

Publisher

verified publisherpresswink.com

Weekly Downloads

A app walk through library to define or showcase app features to the users.

Repository (GitHub)
View/report issues

License

Apache-2.0 (license)

Dependencies

flutter, touch_ripple_effect

More

Packages that depend on app_walk_through