parallax 1.0.3 copy "parallax: ^1.0.3" to clipboard
parallax: ^1.0.3 copied to clipboard

A parallax package for touch-based devices.

Parallax #

A parallax package for touch-based devices, providing a visually appealing user experience.

example1 example2

Getting started #

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
    ...
    parallax: <latest_version>

Add the following import:

import 'package:parallax/parallax.dart';

Provide a required List<String> of images and change the remaining optional parameters to your liking. For example:

final List<String> listOfImages = [
    'images/image1.jpg',
    'images/image2.jpg'
];

Parallax(
      parallaxImages: listOfImages,
      skewAlpha: 3.0,
      skewBeta: 7.0,
      height: 300.0,
      width: 500.0,
      paddingHorizontal: 10.0,
      viewportFraction: 0.8,
      circularBorder: true,
    );
32
likes
120
pub points
61%
popularity

Publisher

verified publishermedafox.com

A parallax package for touch-based devices.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on parallax