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 |
Tags
- import
- 파이썬
- List
- map
- Yocto
- 크롤러
- python
- 콜렉션
- animation
- 웹크롤러
- textstyle
- 함수
- crawler
- 클래스
- package
- 플러터
- Class
- Collection
- variable
- text
- DART
- 코틀린
- function
- pushnamed
- ML
- kotlin
- set
- Flutter
- 다트
- Android
Archives
- Today
- Total
조용한 담장
Flutter : SelectableText 본문
SelectableText
flutter Text 위젯은 화면에 글자를 그리지만 사용자가 텍스트를 복사는 할 수 없다.
TextField 위젯 처럼 텍스트를 복사할 수 있는 위젯을 보자.
SelectableText
SelectableText(String text, { Key key, InputlessFocusNode focusNode, TextStyle style, TextAlign textAlign: TextAlign.start, TextDirection textDirection, Radius cursorRadius, Color cursorColor, DragStartBehavior dragStartBehavior: DragStartBehavior.down, bool enableInteractiveSelection: true, GestureTapCallback onTap })
복사할 수 있는 텍스트를 그릴 수 있는 위젯이다. Text 와 비슷하게 사용할 수 있다.
TextStyle 을 적용하거나 cursor 를 설정할 수 있다.
Reference
'Flutter' 카테고리의 다른 글
Flutter : DataTable (3) | 2019.11.04 |
---|---|
Flutter : Draggable (0) | 2019.10.28 |
Flutter : Navigator (0) | 2019.10.17 |
Flutter : Text Widgets (0) | 2019.10.14 |
Flutter : State management (Provider) (1) | 2019.10.11 |
Comments