[ FLUTTER ] 체크박스 커스텀 V2
import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; import 'package:iamhere/config/config.dart'; import 'package:flutter_svg/flutter_svg.dart'; class CustomCheckbox extends StatefulWidget { const CustomCheckbox({ Key? key, required this.value, this.tristate = false, required this.onChanged, this.mouseCursor, this.activeColor = const Color(0xFF292929), this.borderColor ..