
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
1) 위에 파란색이 안뜹니다. dart에 자료에 있는걸 그대로 붙여넣기 했는데 왜 파란줄이 위에 안생길까요?
2) 자료 다 따라했는데 왜 style에 빨간줄이 가있는지 모르겠습니다.
 질문 관련 스샷.png)
 질문 관련 스샷.png)
제 main.dart 코드입니다.
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(),
body: Column(
children: [
Text(
"Hello Flutter"
style: TextStyle(fontSize: 28),
),
TextField()
],
),
),
);
}
}
