mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
56 lines
1.4 KiB
Dart
56 lines
1.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import '../../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<CheckboxTextButton> createState() => _CheckboxTextButtonState();
|
|
}
|
|
|
|
class _CheckboxTextButtonState extends State<CheckboxTextButton> {
|
|
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),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|