import 'package:flutter/material.dart'; import 'package:stackwallet/utilities/text_styles.dart'; class CheckboxTextButton extends StatefulWidget { const CheckboxTextButton({super.key, required this.label, this.onChanged}); final String label; final void Function(bool)? onChanged; @override State createState() => _CheckboxTextButtonState(); } class _CheckboxTextButtonState extends State { bool _value = false; @override Widget build(BuildContext context) { return GestureDetector( onTap: () { setState(() { _value = !_value; }); widget.onChanged?.call(_value); }, child: Container( color: Colors.transparent, child: Row( crossAxisAlignment: CrossAxisAlignment.start, children: [ SizedBox( width: 20, height: 26, child: IgnorePointer( child: Checkbox( materialTapTargetSize: MaterialTapTargetSize.shrinkWrap, value: _value, onChanged: (_) {}, ), ), ), const SizedBox( width: 12, ), Expanded( child: Text( widget.label, style: STextStyles.w500_14(context), ), ), ], ), ), ); } }