UNPKG

@dark-engine/platform-desktop

Version:

Dark renderer to desktop platforms like Windows, Linux, macOS via Nodegui and Qt

14 lines (13 loc) 402 B
import { QLineEdit } from '@nodegui/nodegui'; import { component } from '@dark-engine/core'; import { qLineEdit } from '../factory'; const LineEdit = component(props => qLineEdit(props), { displayName: 'LineEdit', }); class QDarkLineEdit extends QLineEdit { setPlaceholder(value) { this.setPlaceholderText(value); } } export { LineEdit, QDarkLineEdit }; //# sourceMappingURL=line-edit.js.map