We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 634c6f0 commit dd0f44bCopy full SHA for dd0f44b
lib/flutter_custom_dialog_widget.dart
@@ -1,3 +1,5 @@
1
+import 'dart:ui';
2
+
3
import 'package:flutter/material.dart';
4
5
import 'package:flutter_custom_dialog/flutter_custom_dialog.dart';
@@ -50,7 +52,13 @@ class YYRadioListTileState extends State<YYRadioListTile> {
50
52
return Material(
51
53
color: widget.color,
54
child: RadioListTile(
- title: Text(widget.items[index].text),
55
+ title: Text(
56
+ widget.items[index].text,
57
+ style: TextStyle(
58
+ fontSize: widget.items[index].fontSize,
59
+ fontWeight: widget.items[index].fontWeight,
60
+ color: widget.items[index].color),
61
+ ),
62
value: index,
63
groupValue: groupId,
64
activeColor: widget.activeColor,
0 commit comments