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.
Comments are closed.