From 614a56301a7a83689695f77b4eb5209cc56a0154 Mon Sep 17 00:00:00 2001 From: Mandresy Randrianarinjaka Date: Thu, 6 Feb 2025 14:43:19 +0300 Subject: [PATCH] feat: Update counter increment to 2 --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index bb91184..12c15af 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 = _counter + 2; }); }