Flutter 에서 ScrollListView 적용 방법 참고 : https://api.flutter.dev/flutter/widgets/SingleChildScrollView-class.html import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); /// This is the main application widget. class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); static const String _title = 'Title'; @override Widget build(BuildContext context) { ret..