
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
저의 VS코드 버전의 문제일까요? 버전 확인은 어떻게 하나요?
로그인페이지만들기 1까지는 문제없었어요. 패딩부터 따라해도 코드가 안 먹어요 ㅠ

프라블럼이 또 생겼어요.

작성한 코드 및 에러 메세지
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(
title: Text(
"hello flutter",
style: TextStyle(fontSize: 28, color: Colors.blue),
),
centerTitle: true,
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
children: [
Image.network("https://i.ibb.co/nngK6j3/startup.png"),
TextField(
decoration: InputDecoration(
labelText: "이메일",
),
),
TextField(
obscureText: true,
decoration: InputDecoration(
labelText: "비밀번호",
),
),
Container(
width: double.infinity,
margin: EdgeInsets.only(top, 24),
child: ElevatedButton(
onPressed: () {},
child: Text(
"로그인",
)),
)
],
),
),
),
);
}
}
