반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 라이언
- 춘식
- Android
- listview
- 플러터
- 데스크테리어
- sqflite
- VSCode
- list
- GitHub
- AppleSilicon
- 내돈내산
- datetime
- AppBar
- ios
- 카카오
- Flutter
- 간단리뷰
- TextField
- GetX
- visualstudiocode
- M1
- error
- react
- 데스크셋업
- Git
- database
- wrap
- swift
- xcode
Archives
- Today
- Total
목록backgroundImage (1)
welcome to my blog
[Flutter] 위젯 속성 (2) TextField, AppBar, BackgroundImage...
TextField( maxLines: 1, decoration: InputDecoration(border: InputBorder.none, hintText: '무엇이든 입력하세요'), ), TextField의 밑줄 없애는 방법 : decoration : InputDecoration의 border속성을 none으로 설정해준다. hintText : 텍스트필드에 입력하기 전에 어떤 내용을 작성해야하는지 알려주는 기능. 터치하는 순간 사라짐 Container( decoration: const BoxDecoration( image: DecorationImage( image: AssetImage("assets/background.jpg"), fit: BoxFit.fill ) ), ), 배경이미지 설정하는 방법: 먼..
Flutter
2021. 11. 8. 20:05