로그인 페이지 구현을 위해 textfield를 사용했다. TextField( decoration: InputDecoration( border: OutlineInputBorder(), hintText: 'Password', labelText: 'Password' ), keyboardType: TextInputType.text, obscureText: true, ), textfield를 꾸미기 위해서는 decoration이 필요하다.그 안에서 border에 OutlineInputBorder()를 사용해일자였던 칸들을 네모 모양으로 만들었다.hintText는 칸 안에 설명을 나타내주는것이고labelText는 칸밖의 설명이라고 할 수 있다.keyBoardT..