
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
왜 이럴까요..

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('🎬 Movie Review', style: TextStyle(fontSize: 18)),
backgroundColor: Colors.black,
elevation: 0.0,
actions: <Widget>[
IconButton(
icon: Icon(Icons.people),
onPressed: () {
print('아이콘을 클릭했습니다.');
},
),
]),
body: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(children: [
Padding(
padding: const EdgeInsets.all(8.0),
child: Container(
padding:
const EdgeInsetsDirectional.symmetric(horizontal: 8.0),
child: TextField(
decoration: InputDecoration(labelText: '영화 제목을 검색해주세요.')),
),
),
Padding(
padding: const EdgeInsets.all(32),
child: Image.network(
'https://i.ibb.co/nngK6j3/startup.png',
width: 81,
)),
Padding(
padding: const EdgeInsets.all(32),
child: Image.network(
'https://i.ibb.co/nngK6j3/startup.png',
width: 81,
)),
Padding(
padding: const EdgeInsets.all(32),
child: Image.network(
'https://i.ibb.co/nngK6j3/startup.png',
width: 81,
)),
Padding(
padding: const EdgeInsets.all(32),
child: Image.network(
'https://images.app.goo.gl/F3AFmyrpBcNznWgT9',
width: 81,
))
]),
),
),
),
);
}
}
