Skip to content

Commit

Permalink
Fix typo in readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jinyus authored Apr 19, 2024
1 parent 25ae22f commit 3f80332
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ class CounterView extends StatelessWidget {
@override
Widget build(BuildContext context) {
final contoller = countControllerRef.of(context);
final controller = countControllerRef.of(context);
return ListenableBuilder(
listenable: contoller,
listenable: controller,
builder: (context, snapshot) {
return Text('${contoller.count}');
return Text('${controller.count}');
},
);
}
Expand Down

0 comments on commit 3f80332

Please sign in to comment.