오늘 Flutter에서 가장 기본적인 레이아웃 함수인 Row Column을 배워 보겠습니다. 말 그대로 Row는 물체를 가로로 나열하는 것을 의미하고 Column은 세로로 배치하는 것을 의미합니다. 먼저, Row로 사각형을 가로로 배치해보겟습니다. import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: Them..