feat: Update counter increment to 2
Some checks failed
versioning-and-changelog / versioning_and_changelog (pull_request) Failing after 15s

This commit is contained in:
Mandresy Randrianarinjaka 2025-02-06 14:43:19 +03:00
parent a645c43e38
commit 614a56301a

View File

@ -64,7 +64,7 @@ class _MyHomePageState extends State<MyHomePage> {
// so that the display can reflect the updated values. If we changed // so that the display can reflect the updated values. If we changed
// _counter without calling setState(), then the build method would not be // _counter without calling setState(), then the build method would not be
// called again, and so nothing would appear to happen. // called again, and so nothing would appear to happen.
_counter++; _counter = _counter + 2;
}); });
} }