release: 1.0.11

This commit is contained in:
Kuloud
2024-08-25 23:37:44 +08:00
parent 74e60b2015
commit 8c59ec203a
20 changed files with 87 additions and 118 deletions

View File

@ -24,13 +24,13 @@ class _AMapRadioGroupState<T> extends State<AMapRadioGroup<T>> {
@override
void initState() {
super.initState();
_groupValue = (widget.groupValue ?? null) as T?;
_groupValue = (widget.groupValue);
}
@override
Widget build(BuildContext context) {
List<Widget> radioList = <Widget>[];
_groupValue = (widget.groupValue ?? null) as T?;
_groupValue = (widget.groupValue);
Widget _myRadio(String label, dynamic radioValue) {
return Row(
mainAxisAlignment: MainAxisAlignment.center,