목차 프로젝트 생성 및 리스트뷰 생성 애니메이션 구현 스크롤 이동 (완성) 1. 프로젝트 생성 및 리스트뷰 생성 * 소스코드 import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( title: 'Example', debugShowCheckedModeBanner: false, theme: ThemeData(primarySwatch: Colors.blue), ho..