Skip to content

Commit

Permalink
Fix typo in widget_driver README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik089 authored Jul 9, 2024
1 parent 7908674 commit dd9cf59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion widget_driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ If you want to take some action one time the first time the widget gets shown th
Simple override this method and put your code there.

This method will be called one time for each lifecycle of the `Driver`.
It will get called after the constructor and after the `didUpdatedidUpdateBuildContext` and `didUpdateProvidedProperties` methods have been called. So if you needed to first assign some data in those methods you are safe to use that data in the `didInitDriver()`.
It will get called after the constructor and after the `didUpdateBuildContext` and `didUpdateProvidedProperties` methods have been called. So if you needed to first assign some data in those methods you are safe to use that data in the `didInitDriver()`.

```dart
class MyDriver extends WidgetDriver {
Expand Down

0 comments on commit dd9cf59

Please sign in to comment.