update tooling

This commit is contained in:
Fabien Freling 2023-10-04 14:20:49 +02:00
parent e8ec399878
commit f5fdb07f90
6 changed files with 101 additions and 51 deletions

View file

@ -24,7 +24,7 @@ class MyApp extends StatelessWidget {
// is not restarted.
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
home: const MyHomePage(title: 'Fab App'),
);
}
}
@ -96,11 +96,11 @@ class _MyHomePageState extends State<MyHomePage> {
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
'You have pushed the button this many times, whoa:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headline4,
style: Theme.of(context).textTheme.headlineMedium,
),
],
),