Related Linear issue [[ https://linear.app/comm/issue/ENG-1730/select-thread-name-when-clicking-edit-button-on-native | here ]].
This diff selects the thread name when clicking the edit button in `ThreadSettingsName`, and also allows the viewer to view the entire thread name on multiple lines instead of only viewing a fixed portion of the thread name on a single line.
I'm pretty sure selecting the text on clicking the edit button was already meant to occur because the `selectTextOnFocus` prop is set to `true` already:
{F156675}
But this wasn't happening because the only prop that's missing is the `multiline` prop.
According to [[ https://github.com/facebook/react-native/issues/30585#issuecomment-749728829 | this GitHub comment ]], setting the `multiline` prop to `true` can solve the issue of `selectTextOnFocus` not doing anything.