Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 633 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 633 Bytes

spotlight_carousel

A Flutter widget for displaying images in a carousel style with an optional page indicator. See the demonstration here.

example screenshot

Getting Started

To include in your Flutter project, import the base Dart file.

import 'package:spotlight_carousel/spotlight_carousel.dart';

Then, add the widget to your build method.

SpotlightCarousel(
    images: images,
    titles, titles,
    descriptions, descriptions,    
);