Compare commits

...

3 Commits

Author SHA1 Message Date
90e1c4790a Merge pull request 'dev' (#35) from dev into master
Reviewed-on: #35
2025-02-06 13:15:46 +00:00
Mandresy Randrianarinjaka
de571226af feat: Change counter value increment to * 2
All checks were successful
versioning-and-changelog / versioning_and_changelog (pull_request) Successful in 19s
2025-02-06 16:14:55 +03:00
Mandresy Randrianarinjaka
c62eb994d9 style: Fix typo 2025-02-06 16:14:12 +03:00

View File

@ -16,7 +16,7 @@ class MyApp extends StatelessWidget {
colorScheme: ColorScheme.fromSeed(seedColor: Colors.red),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
home: const MyHomePage(title: 'Flutter test Home Page'),
);
}
}
@ -35,7 +35,7 @@ class _MyHomePageState extends State<MyHomePage> {
void _incrementCounter() {
setState(() {
_counter = _counter + 4;
_counter = _counter * 2;
});
}