Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Pante committed Nov 6, 2024
1 parent a423cbc commit f3bd856
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/lib/widgets/select_menu_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class SelectMenuTilePage extends StatefulSample {
}

class _SelectMenuTilePageState extends StatefulSampleState<SelectMenuTilePage> {
final FRadioSelectGroupController<Notification> controller = FRadioSelectGroupController();
final FRadioSelectGroupController<Notification> controller = FRadioSelectGroupController(value: Notification.all);

@override
Widget sample(BuildContext context) => FSelectMenuTile(
Expand Down Expand Up @@ -66,7 +66,7 @@ class SelectMenuTileFormPage extends StatefulSample {

class _SelectMenuTileFormPageState extends StatefulSampleState<SelectMenuTileFormPage> {
final GlobalKey<FormState> _formKey = GlobalKey<FormState>();
final FRadioSelectGroupController<Notification> controller = FRadioSelectGroupController();
final FRadioSelectGroupController<Notification> controller = FRadioSelectGroupController(value: Notification.all);

@override
Widget sample(BuildContext context) => Form(
Expand Down

0 comments on commit f3bd856

Please sign in to comment.