how to make the TextField be selectable?
# compose-desktop
s
how to make the TextField be selectable?
I wanna copy the text.
d
have you wrapped your Text in a 
SelectionContainer
 ?
Copy code
SelectionContainer {
    BasicTextField(...
s
👍👍 wow~