overlapped_carousel 1.0.0 copy "overlapped_carousel: ^1.0.0" to clipboard
overlapped_carousel: ^1.0.0 copied to clipboard

outdated

A Flutter package project that is a simple horizontal overlapped_carousel widget.

Overlapped Carousel #

A horizontal overlapped carousel widget. The center widget will be at the top of the stack.

Demo #

Installation #

Add overlapped_carousel: ^1.0.0 to your pubspec.yaml dependecies. And import it:

import 'package:overlapped_carousel/overlapped_carousel.dart';

How to use #

Simply add a OverlappedCarousel widget with required params.

  @override
  Widget build(BuildContext context) {
    var maxWidth = MediaQuery.of(context).size.width;
    return Scaffold(
      backgroundColor: Colors.blue,
      //Wrap with Center to place the carousel center of the screen
      body: Center(
        //Wrap the OverlappedCarousel widget with SizedBox to fix a height. No need to specify width.
        child: SizedBox(
          height: maxWidth / 3.6 * (16 / 9),
          child: OverlappedCarousel(
            widgets: widgets, //List of widgets
            onClicked: () {},
          ),
        ),
      ),
    );
  }

42
likes
0
pub points
86%
popularity

Publisher

verified publisherdelwar.info

A Flutter package project that is a simple horizontal overlapped_carousel widget.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on overlapped_carousel