v0.0.7flutter_switch_clipper
A Flutter package that two widgets switch with default clipper or customized clipper.
60Likes 3830-day downloads160Pub points
AndroidiOSWebmacOSWindowsLinux
A Flutter package that two widgets switch with clipper.
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.0English project snapshot. Visit GitHub for the latest content.
A Flutter package that two widgets switch with clipper.
pub package GitHub stars GitHub forks CodeFactor FlutterCandies
体验网址:Demo
https://raw.githubusercontent.com/fluttercandies/flutter_switch_clipper/master/preview/fv.gif使用FillClipper并自定义相关参数
SwitchClipper(
initSelect: true,
child: const Icon(Icons.favorite, size: 200, color: Colors.redAccent),
background: const Icon(Icons.favorite, size: 200, color: Colors.white),
duration: const Duration(milliseconds: 800),
animationClip: FillClipper(fillAlignment: _alignment,fillOffset: 50),
),
https://raw.githubusercontent.com/fluttercandies/flutter_switch_clipper/master/preview/fc.gif使用默认FillClipper
const SwitchClipper(
enableWhenAnimating: false,
child: Text(
'FlutterCandies',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 50,
color: Colors.amber,
height: 2,
),
),
background: Text(
'FlutterCandies',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 50,
color: Colors.white,
height: 2,
),
),
curve: Curves.slowMiddle,
reverseCurve: Curves.linear,
),
https://raw.githubusercontent.com/fluttercandies/flutter_switch_clipper/master/preview/cs.gif使用CircleClipper切换图标颜色
SwitchClipper(
child: const Icon(Icons.accessibility_new_rounded, size: 200, color: Colors.blueAccent),
background: const Icon(Icons.accessibility_new_rounded, size: 200, color: Colors.white),
curve: Curves.ease,
duration: const Duration(milliseconds: 800),
animationClip: CircleClipper(),
),
https://raw.githubusercontent.com/fluttercandies/flutter_switch_clipper/master/preview/cs2.gif使用CircleClipper切换两个图标
SwitchClipper(
child: ColoredBox(
color: Colors.blueGrey[200] ?? Colors.blueGrey,
child: const Icon(Icons.accessibility_new_rounded, size: 200, color: Colors.white)),
background: const Icon(Icons.accessible_forward_outlined, size: 200, color: Colors.white),
curve: Curves.ease,
duration: const Duration(milliseconds: 800),
animationClip: CircleClipper(),
),
https://raw.githubusercontent.com/fluttercandies/flutter_switch_clipper/master/preview/cs3.gif使用ShutterClipper
SwitchClipper(
child: ColoredBox(
color: Colors.blueGrey[200] ?? Colors.blueGrey,
child: const Icon(Icons.accessibility_new_rounded, size: 200, color: Colors.white)),
background: const Icon(Icons.accessible_forward_outlined, size: 200, color: Colors.white),
curve: Curves.ease,
duration: const Duration(milliseconds: 800),
animationClip: ShutterClipper(activeAlignment: _alignment),
),
https://raw.githubusercontent.com/fluttercandies/flutter_switch_clipper/master/preview/cs4.gif使用WaveClipper
SwitchClipper(
child: const Icon(Icons.access_time_filled_rounded, size: 200, color: Colors.blue),
background: const Icon(Icons.access_time_filled_rounded, size: 200, color: Colors.white),
curve: Curves.ease,
duration: const Duration(milliseconds: 2000),
animationClip: WaveClipper(
waveAlignment: _alignment == FillAlignment.left ? WaveAlignment.left : WaveAlignment.right,
),
),
https://raw.githubusercontent.com/fluttercandies/flutter_switch_clipper/master/preview/cs5.gif使用CameraClipper
SwitchClipper(
child: Container(
width: 200,
height: 200,
alignment: Alignment.center,
decoration: const BoxDecoration(
shape: BoxShape.circle,
color: Colors.blue,
),
child: const Text(
'Camera',
style: TextStyle(color: Colors.white, fontSize: 40, fontWeight: FontWeight.bold),
),
),
background: Container(
width: 200,
height: 200,
decoration: const BoxDecoration(
shape: BoxShape.circle,
color: Colors.white,
),
),
duration: const Duration(milliseconds: 2000),
animationClip: CameraClipper(),
),