v1.0.0switcher
아름다운 애니메이션 효과와 개인화된 스위처 위젯 컴포넌트입니다.
45좋아요 21130일 다운로드140Pub 점수
AndroidiOSWebmacOSWindowsLinux
아름답고 개인화된 스위처 컴포넌트
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
Based on Eduardo Muñoz's widget lite_rolling_switch
A animated and beautiful Switcher
In pubspec.yaml:
dependencies:
switcher: any
import 'package:switcher/switcher.dart';
Switcher(
value: false,
size: SwitcherSize.large,
switcherButtonRadius: 50,
enabledSwitcherButtonRotate: true,
iconOff: Icons.lock,
iconOn: Icons.lock_open,
colorOff: Colors.blueGrey.withOpacity(0.3),
colorOn: Colors.blue,
onChanged: (bool state) {
//
},
),
Switcher(
value: false,
size: SwitcherSize.large,
switcherButtonRadius: 50,
iconOff: null,
enabledSwitcherButtonRotate: false,
colorOff: Colors.blueGrey.withOpacity(0.3),
colorOn: Colors.blue,
onChanged: (bool state) {
//
},
),
Please send feature requests and bugs at the issue tracker.