You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aku_new_community/lib/widget/buttons/bee_check_button.dart

39 lines
1.1 KiB

import 'package:flutter/material.dart';
import 'package:aku_community/base/base_style.dart';
import 'package:aku_community/utils/headers.dart';
class BeeCheckButton<T> extends StatefulWidget {
3 years ago
final Function(T value)? onChange;
final T? value;
final T? groupValue;
final String? title;
BeeCheckButton(
3 years ago
{Key? key, this.onChange, this.value, this.groupValue, this.title})
: super(key: key);
@override
_BeeCheckButtonState createState() => _BeeCheckButtonState();
}
class _BeeCheckButtonState extends State<BeeCheckButton> {
bool get isSelect => widget.groupValue == widget.value;
@override
Widget build(BuildContext context) {
return MaterialButton(
onPressed: () {
3 years ago
widget.onChange!(widget.value);
},
3 years ago
child: widget.title!.text
.color(isSelect ? ktextPrimary : Color(0xFF979797))
.size(32.sp)
.make(),
padding: EdgeInsets.symmetric(horizontal: 34.w, vertical: 14.w),
shape: RoundedRectangleBorder(
side: BorderSide(
color: isSelect ? kPrimaryColor : ktextSubColor, width: 3.w),
borderRadius: BorderRadius.circular(36.w)),
);
}
}