custom_switch_button

Creator: coderz1093

Last updated:

Add to Cart

Description:

custom switch button

custom_switch_button #
Customized switch button to make your flutter development easier and more fun to do.
Get started #
Add dependency #
dependencies:
custom_switch_button: ^0.5.0
copied to clipboard
Example #
import 'package:custom_switch_button/custom_switch_button.dart';

bool isChecked = false;

return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Custom Switch Button example app'),
),
body: GestureDetector(
onTap: () {
setState(() {
isChecked = !isChecked;
});
},
child: Center(
child: CustomSwitchButton(
backgroundColor: Colors.blueGrey,
unCheckedColor: Colors.white,
animationDuration: Duration(milliseconds: 400),
checkedColor: Colors.lightGreen,
checked: isChecked,
),
),
),
),
);

copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.