melior_slideshow 0.0.1

SDKflutter
Platformandroidiosweb

A Flutter plugin for create beautiful slideshows. Supports Android, iOS and Web.

melior_slideshow

A Flutter plugin for create beautiful slideshows. Supports Android, iOS and Web.

PlatformAndroidiOSWebmacOSWindowLinux
SupportSDK 16+9.0+Any❌️❌️❌️

Usage

To use this plugin, add melior_slideshow as a dependency in your pubspec.yaml file.

Example

MeliorSlider(
              maxSlide: _items.length,
              numOfVisibleSlide: 3,
              initialOffset: const Offset(100, 100),
              deltaOffset: const Offset(20, 20),
              autoJump: true,
              onBuildChild: (({int currentElevationIndex = 0, int index = 0}) {
                return SizedBox(
                  width: 400,
                  height: 200,
                  child: ClipRRect(
                    borderRadius: BorderRadius.circular(10),
                    child: Image.asset(
                      _items[index],
                      fit: BoxFit.cover,
                    ),
                  ),
                );
              }),
            ),

Functions

Functions support by platform:

FunctionAndroidiOSLinuxmacOSWindowsWeb
Create slider✔️✔️✔️❌️❌️✔️
Auto next❌️❌️❌️❌️❌️❌️

Testing

See this melior_slideshow test for an example.