From 254ca8c5d146cf98a7954229230a269049b86671 Mon Sep 17 00:00:00 2001 From: Mandresy Randrianarinjaka Date: Thu, 6 Feb 2025 15:02:44 +0300 Subject: [PATCH] feat: Add counter increment value to 4 --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 83b478e..7867580 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -64,7 +64,7 @@ class _MyHomePageState extends State { // 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; }); }