A flutter package which makes it easy to track a series of images
Multi Image Tracker
A flutter package which makes it easy to track a series of images.
Installation
In the dependencies:
section of your pubspec.yaml
, add the following line:
dependencies:
multi_image_tracker: <latest version>
Usage
Import this class
import 'package:multi_image_tracker/multi_image_tracker.dart';
multi image tracker
MultiImageTracker(
images: [Image.asset('assets/day1.jpg'),
Image.asset('assets/day2.jpg'),
Image.asset('assets/day3.jpg')],
width: MediaQuery.of(context).size.width,
height: MediaQuery.of(context).size.height,
clipFactor: 0.6,
),
Getting Started
For help getting started with Flutter, view our online documentation.
For help on editing package code, view the documentation.