Flutter Create and style a text field
# Flutter Create and style a text field import 'package:flutter/material.dart'; /*텍스트 필드를 사용하면 응용프로그램에 텍스트를 입력할 수 있습니다.텍스트 필드를 사용하여 양식, 메시징 앱, 검색 환경 등을 작성할 수 있습니다*/ class TextFieldCreateStyle extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('TextFieldCreateStyle'), ), body: Column( children: [ /* TextField는 가장 일반적으로 사용되는 텍스트 입력..