feat: Change counter value increment to * 2
All checks were successful
versioning-and-changelog / versioning_and_changelog (pull_request) Successful in 19s

This commit is contained in:
Mandresy Randrianarinjaka 2025-02-06 16:14:55 +03:00
parent c62eb994d9
commit de571226af

View File

@ -35,7 +35,7 @@ class _MyHomePageState extends State<MyHomePage> {
void _incrementCounter() { void _incrementCounter() {
setState(() { setState(() {
_counter = _counter + 4; _counter = _counter * 2;
}); });
} }