File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 3
3
"dockerfile" : " Dockerfile"
4
4
},
5
5
"name" : " Flutter" ,
6
- "extensions" : [
7
- " Dart-Code.dart-code" ,
8
- " Dart-Code.flutter"
9
- ],
6
+ "customizations" : {
7
+ "vscode" : {
8
+ "extensions" : [
9
+ " Dart-Code.dart-code" ,
10
+ " Dart-Code.flutter"
11
+ ]
12
+ }
13
+ }
10
14
}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class MyApp extends StatelessWidget {
26
26
}
27
27
28
28
class MyHomePage extends StatefulWidget {
29
- MyHomePage ({Key key, this .title}) : super (key : key );
29
+ MyHomePage ({super . key, required this .title});
30
30
31
31
// This widget is the home page of your application. It is stateful, meaning
32
32
// that it has a State object (defined below) that contains fields that affect
@@ -94,10 +94,7 @@ class _MyHomePageState extends State<MyHomePage> {
94
94
Text (
95
95
'You have pushed the button this many times:' ,
96
96
),
97
- Text (
98
- '$_counter ' ,
99
- style: Theme .of (context).textTheme.display1,
100
- ),
97
+ Text ('$_counter ' ),
101
98
],
102
99
),
103
100
),
Original file line number Diff line number Diff line change @@ -2,10 +2,9 @@ name: github_codespaces_flutter_web
2
2
description : A sample Flutter web application.
3
3
version : 1.0.0
4
4
homepage : https://github.com/DanTup/github-codespaces-flutter-web
5
- author :
Danny Tuppeny <[email protected] >
6
5
7
6
environment :
8
- sdk : " >=2 .1.0 <3 .0.0"
7
+ sdk : " >=3 .1.0 <4 .0.0"
9
8
10
9
dependencies :
11
10
flutter :
You can’t perform that action at this time.
0 commit comments