Skip to content

Commit 7be645c

Browse files
committed
added GFRadioListtile
1 parent 3e7396d commit 7be645c

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

example/lib/main_temp.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,8 @@ class _MyHomePageState extends State<MyHomePage>
158158
height: 10,
159159
),
160160

161+
Radio(value: null, groupValue: null, onChanged: null),
162+
RadioListTile(value: null, groupValue: null, onChanged: null),
161163

162164
GFCheckboxListTile(
163165
color: GFColors.LIGHT,
@@ -201,7 +203,7 @@ class _MyHomePageState extends State<MyHomePage>
201203

202204
GFCheckbox(
203205
size: GFSize.SMALL,
204-
onChanged: (val) {
206+
onChanged: (val) {
205207
setState(() {
206208
check = val;
207209
});

lib/components/radio_list_tile/gf_radio_list_tile.dart

Whitespace-only changes.

lib/getwidget.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ export 'package:getwidget/components/loader/gf_loader.dart';
3535
export 'package:getwidget/components/progress_bar/gf_progress_bar.dart';
3636
export 'package:getwidget/components/checkbox/gf_checkbox.dart';
3737
export 'package:getwidget/components/checkbox_list_tile/gf_checkbox_list_tile.dart';
38-
export 'package:getwidget/components/radio_button/gf_radio_button.dart';
38+
export 'package:getwidget/components/radio/gf_radio.dart';
39+
export 'package:getwidget/components/radio_list_tile/gf_radio_list_tile.dart';
3940

4041
// exports shape, color, position, size, types, direction
4142
export 'colors/gf_color.dart';

0 commit comments

Comments
 (0)