diff --git a/lib/main.dart b/lib/main.dart index e982a98..486bfb6 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -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 { void _incrementCounter() { setState(() { - _counter = _counter + 4; + _counter = _counter * 2; }); }