-
Notifications
You must be signed in to change notification settings - Fork 331
Open
Labels
Milestone
Description
When we override some Flutter life-cycle methods we have to always type a call to super
and be aware if it's on the beginning or the end of the method, for example:
@override
void initState() {
super.initState();
// our code here
}
@override
void dispose() {
// our code here
super.dispose();
}
I think this could be automated when we use Ctrl+O
to override the life-cycle methods, generating the overridden method, with the proper call to super and the caret at the right position.
ChessMax
Metadata
Metadata
Assignees
Labels
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
devoncarew commentedon Dec 19, 2019
👍