flutter_slide_swap 1.2.0 copy "flutter_slide_swap: ^1.2.0" to clipboard
flutter_slide_swap: ^1.2.0 copied to clipboard

Flutter widget that swaps children with each other in slide animation.

flutter_slide_swap #

Flutter widget that swaps children with each other in slide animation.

pub package

Getting Started #

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

dependencies:
 flutter_slide_swap: 

Import the library in your file.

import 'package:flutter_slide_swap/flutter_slide_swap.dart';

See the example directory for a complete sample app using SlideSwap. Or use the SlideSwap like below.

var _controller = SlideController(length: 4);
SlideSwap(
  controller: _controller,
  children: <Widget>[
    RaisedButton(
      key: keyA,
      onPressed: () {
        _controller.swapOrder(0, 1);
      },
      child: Text('A'),
    ),
    RaisedButton(
      key: keyB,
      onPressed: () {
        _controller.swapWithKey(keyA, keyB);
      },
      child: Text('B'),
    ),
  ],
)

1
likes
40
points
25
downloads

Publisher

verified publisherzuvola.com

Weekly Downloads

Flutter widget that swaps children with each other in slide animation.

Repository (GitHub)

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_slide_swap