Last updated:
0 purchases
multi image tracker
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>
copied to clipboard
Usage #
Import this class #
import 'package:multi_image_tracker/multi_image_tracker.dart';
copied to clipboard
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,
),
copied to clipboard
Getting Started #
For help getting started with Flutter, view our online documentation.
For help on editing package code, view the documentation.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.