| Index: sky/framework/components/radio.dart
|
| diff --git a/sky/framework/components/radio.dart b/sky/framework/components/radio.dart
|
| index edc79374665f4290bf2eae4debaf9bad50fc6ba7..e94cf9f9541ced4ce38833c006aa9fa131b2f156 100644
|
| --- a/sky/framework/components/radio.dart
|
| +++ b/sky/framework/components/radio.dart
|
| @@ -56,8 +56,8 @@ class Radio extends ButtonBase {
|
|
|
| Node build() {
|
| return new Material(
|
| - styles: [highlight ? _highlightStyle : _style],
|
| - children: value == groupValue ? [new Container(styles: [_dotStyle] )] : []
|
| + style: highlight ? _highlightStyle : _style,
|
| + children: value == groupValue ? [new Container(style: _dotStyle )] : []
|
| );
|
| }
|
|
|
|
|