| Index: sky/framework/components/radio.dart
|
| diff --git a/sky/framework/components/radio.dart b/sky/framework/components/radio.dart
|
| index aed1b81ad62a79b00086c4b33987850ef2ff4755..ff64a36be16ec26a66d6102402c2dc20e639b2da 100644
|
| --- a/sky/framework/components/radio.dart
|
| +++ b/sky/framework/components/radio.dart
|
| @@ -55,9 +55,11 @@ class Radio extends ButtonBase {
|
|
|
| Node buildContent() {
|
| return new EventTarget(
|
| - new InkWell(
|
| - style: highlight ? _highlightStyle : _style,
|
| - children: value == groupValue ? [new Container(style: _dotStyle )] : []
|
| + new StyleNode(
|
| + new InkWell(
|
| + children: value == groupValue ? [new Container(style: _dotStyle)] : []
|
| + ),
|
| + highlight ? _highlightStyle : _style
|
| ),
|
| onGestureTap: _handleClick
|
| );
|
|
|