image_slide_show
A simple show image widget for Flutter. For this Widget it will to help you show image like other social media app.
Installation
Add image_slide_show
as a dependency in your pubspec.yaml file.
image_slide_show: ^1.0.5
Import Photo View:
import 'package:image_slide_show/image_slide_show.dart';
Gallery
To show image, use ImageSlideWidget
ImageSlideWidget(
scrollController: scrollController,
child: Image.network(
imageUrl,
fit: BoxFit.cover,
),
)
Read more about the ImageSlideWidget
widget here.
Example
Read more about the example to use the ImageSlideWidget
and ImageSlideShow
widget here.