slider_confirm_button 0.0.1+6 copy "slider_confirm_button: ^0.0.1+6" to clipboard
slider_confirm_button: ^0.0.1+6 copied to clipboard

Animated slider confirm button that customize color, font , child widgets and more.

slider_confirm_button #

Animated slider confirm button that customize color, font , child widgets and more.

Demo #

Sample Demo

How to use #

In your pubspec.yaml, include the package

dependencies:
  flutter:
    sdk: flutter

  slider_confirm_button: ^0.0.1+6

In your code, add import

import 'package:slider_confirm_button/slider_confirm_button.dart';

Then add the widget to your screen

        ConfirmButton(
          width: width,
          height: 55,
          btnOneClickReverseSlider: false,
          btnTwoClickReverseSlider: true,
          btnOneOnpressed: () {
            print('Button one clicked');
          },
          btnTwoOnpressed: () {
            print('Button two clicked');
          },
          mainColor: Color(0XFFb063c5),
          mainChild: new Row(
            children: <Widget>[
              new Text(
                'I accept the Terms of Service',
                overflow: TextOverflow.ellipsis,
              ),
            ],
          ),
          subOneColor: Color(0XFF46b3e6),
          subOneChild: new Row(
            children: <Widget>[
              new Icon(Icons.check_circle_outline),
              new Text(' Confirm')
            ],
          ),
          subTwoColor: Color(0XFFe25822),
          subTwoChild: new Row(
            children: <Widget>[new Icon(Icons.close), new Text(' No')],
          )
        ),

Sample code: https://github.com/ashanftw/slider_confirm_button

6
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Animated slider confirm button that customize color, font , child widgets and more.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on slider_confirm_button