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

Parallax widget for any your widget

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);
  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: ParallaxWidget(Image.asset("assets/img.png", height: 400, width: 300,), 400, 300),
      ),
    );
  }
}
0
likes
90
pub points
29%
popularity

Publisher

unverified uploader

Parallax widget for any your widget

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, sensors_plus

More

Packages that depend on parallax_widget