Radio

Posted timba1322

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Radio相关的知识,希望对你有一定的参考价值。

String _character = ‘A‘;
 
Radio<String>(
  value: ‘A‘, // 代表的值
  groupValue: _character, // 当前radio group选中的值,当该值与value值匹配时则被选中
  onChanged: (String newValue) {
    setState(() { // 点击当前控件时更新状态
      _character = newValue;
    });
  },
),
Radio<String>(
  value: ‘B‘,
  groupValue: _character,
  onChanged: (String newValue) {
    setState(() {
      _character = newValue;
    });
  },
),
Radio<String>(
  value: ‘C‘,
  groupValue: _character,
  onChanged: (String newValue) {
    setState(() {
      _character = newValue;
    });
  },
)

 

以上是关于Radio的主要内容,如果未能解决你的问题,请参考以下文章

利用jquery操作Radio方法小结

jQuery如何获取选中单选按钮radio的值

layui radio手动选择失效的问题

s:radio默认选中

ionic2自定义radio样式

JavaScript中获取radio的值