FLUTTER ECOSYSTEM

HornMichaelS/msh_checkbox

一個可自定義的圓形複選框,選取或取消選取時會播放動畫。

msh_checkbox 專案封面
Stars
7
Forks
6
最近推送(UTC)
2023年6月10日
專案狀態
未封存
Michael GitHub avatar
GITHUB User

Michael ↗

Mobile Engineering Tech Lead at Autopilot Holdings Corp.

Los Angeles, California
語言DartC++CMakeHTMLCSwiftKotlinObjective-C

此儲存庫發佈的套件

使用的依賴

依賴清單 3 項
  • flutter{"sdk":"flutter"}
  • flutter_test開發依賴{"sdk":"flutter"}
  • flutter_lints開發依賴^2.0.0

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

msh_checkbox

pub package pub points popularity likes

A customizable circular checkbox which plays an animation when checked or unchecked. Inspired by BEMCheckbox for iOS.

Checkbox Examples

Features

  • Choose from 4 animation/visual styles (stroke, scale in checkmark, scale in background, fade in).

  • Customize colors for active, inactive and disabled states.

  • Customize the animation duration.

Getting started

Install the package:

flutter pub add msh_checkbox

Usage

class Example extends StatefulWidget {
  Example({Key? key}): super(key: key);

  @override
  State<Example> createState() => _ExampleState();
}

class _ExampleState extends State<Example> {
  bool isChecked = false;

  @override
  Widget build(BuildContext context) {
    return Center(
      child: MSHCheckbox(
        size: 60,
        value: isChecked,
        colorConfig: MSHColorConfig.fromCheckedUncheckedDisabled(
          checkedColor: Colors.blue,
        ),
        style: MSHCheckboxStyle.stroke,
        onChanged: (selected) {
          setState(() {
            isChecked = selected;
          });
        },
      ),
    );
  }
}

Support

I know it's a small and simple widget, but if you'd like to support it is certainly appreciated!

Buy Me A Coffee