flutter_image_slideshow 0.0.2+2 copy "flutter_image_slideshow: ^0.0.2+2" to clipboard
flutter_image_slideshow: ^0.0.2+2 copied to clipboard

outdated

A simple image slideshow widget. Mainly intended for image widget, but other widgets can also be used.

example/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Demo'),
        ),
        body: ImageSlideshow(
          width: double.infinity,
          height: 200,
          initialPage: 0,
          indicatorColor: Colors.blue,
          indicatorBackgroundColor: Colors.grey,
          children: [
            Image.asset(
              'images/sample_image_1.jpg',
              fit: BoxFit.cover,
            ),
            Image.asset(
              'images/sample_image_2.jpg',
              fit: BoxFit.cover,
            ),
            Image.asset(
              'images/sample_image_3.jpg',
              fit: BoxFit.cover,
            ),
          ],
          onPageChanged: (value) {
            print('Page changed: $value');
          },
        ),
      ),
    );
  }
}
190
likes
0
points
9.15k
downloads

Publisher

unverified uploader

Weekly Downloads

A simple image slideshow widget. Mainly intended for image widget, but other widgets can also be used.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_image_slideshow