mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
bc1525f513
1-on-1 chat command to send and request a transaction to/from a contact with ENS enabled.
12 lines
333 B
QML
12 lines
333 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import "../imports"
|
|
|
|
TextField {
|
|
font.family: Style.current.fontRegular.name
|
|
color: readOnly ? Style.current.secondaryText : Style.current.textColor
|
|
selectByMouse: !readOnly
|
|
selectedTextColor: Style.current.textColor
|
|
selectionColor: Style.current.secondaryHover
|
|
}
|