mj_image_slider 0.0.5 copy "mj_image_slider: ^0.0.5" to clipboard
mj_image_slider: ^0.0.5 copied to clipboard

A Flutter package for all platforms which provides a simple image slider with/without animation

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  List<String> images =
      [
        "assets/images/images_1.jpg",
        "assets/images/images_2.jpg",
        "assets/images/images_3.jpg",
        "assets/images/images_4.jpg",
      ];
  List<String> networkImages =
      [
        "https://images.unsplash.com/reserve/bOvf94dPRxWu0u3QsPjF_tree.jpg?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1176&q=80",
        "https://images.unsplash.com/photo-1546587348-d12660c30c50?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1174&q=80",
        "https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80",
        "https://images.unsplash.com/photo-1525127752301-99b0b6379811?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80",
      ];
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: SingleChildScrollView(
        child: Padding(
          padding: const EdgeInsets.all(16.0),
          child: Wrap(
            crossAxisAlignment: WrapCrossAlignment.center,
            children: [
              MJImageSlider(
                images: images,
                useLocalAssetImages: true,
                duration: const Duration(seconds: 3),
                width: 320,
                height: 213,
              ),
              const SizedBox(height: 64,width: 64,),
              MJImageSlider(
                images: networkImages,
                useLocalAssetImages: false,
                duration: const Duration(seconds: 3),
                width: 320,
                height: 213,
                curve: Curves.easeInOutCubicEmphasized,
              ),
              const SizedBox(height: 64,width: 64,),
              MJImageSlider(
                images: networkImages,
                useLocalAssetImages: false,
                duration: const Duration(seconds: 3),
                width: 320,
                height: 213,
                curve: Curves.easeInQuad,
              ),
              const SizedBox(height: 64,width: 64,),
              MJImageSlider(
                images: images,
                useLocalAssetImages: true,
                duration: const Duration(seconds: 3),
                width: 320,
                height: 213,
                curve: Curves.fastOutSlowIn,
              ),
            ],
          ),
        ),
      ),// This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}
17
likes
0
pub points
76%
popularity

Publisher

verified publishermiladjalali.ir

A Flutter package for all platforms which provides a simple image slider with/without animation

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on mj_image_slider