feat: Add counter increment value to 4
Some checks failed
versioning-and-changelog / versioning_and_changelog (pull_request) Failing after 18s

This commit is contained in:
Mandresy Randrianarinjaka 2025-02-06 15:02:44 +03:00
parent 690e4f053d
commit 254ca8c5d1

View File

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