Component

Checklist

Flutter implementation of the Checklist component.

Usage

dart
import 'package:refraction_ui/refraction_ui.dart';

class MyChecklistExample extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Checklist(
      // Add props here
    );
  }
}