Flutter
Flutter : SelectableText
iosroid
2019. 10. 21. 11:40
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 를 설정할 수 있다.