mouse_parallax 1.1.0 copy "mouse_parallax: ^1.1.0" to clipboard
mouse_parallax: ^1.1.0 copied to clipboard

A simple way to implement pointer based parallax animations on multiple platforms.

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

/// Example app.
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Example(),
    );
  }
}

/// Example parallax animation
class Example extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: ParallaxStack(
        layers: [
          ParallaxLayer(
            yRotation: 0.35,
            xOffset: 60,
            child: Center(
              child: Container(
                width: 250,
                height: 250,
                color: Colors.black,
              ),
            ),
          ),
          ParallaxLayer(
            yRotation: 0.35,
            xOffset: 80,
            child: Center(
              child: Container(
                width: 200,
                height: 200,
                decoration: const BoxDecoration(
                  color: Colors.deepOrange,
                ),
              ),
            ),
          ),
        ],
      ),
    );
  }
}
158
likes
130
pub points
73%
popularity

Publisher

unverified uploader

A simple way to implement pointer based parallax animations on multiple platforms.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on mouse_parallax