4ecdbe9622
Summary: These were super useful for spotting bugs in PC2. They show many many issues already. Visually they should match PC2. They don't Some API doesn't map directly. Those tests were removed. Test Plan: Opened in qmlscene Everything binds correctly. Some things look horrible. Reviewers: #plasma Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D23827
39 lines
1.4 KiB
QML
39 lines
1.4 KiB
QML
import QtQuick 2.0
|
|
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
|
|
|
Rectangle {
|
|
id: root
|
|
color: "white"
|
|
width: 800
|
|
height: 300
|
|
|
|
property string longText: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed at volutpat nibh, non elementum nulla. Nunc sem magna, semper sit amet sollicitudin et, vestibulum sed metus. Fusce tempor dolor purus, non posuere urna sodales in. Aenean eu erat ipsum. Fusce egestas pulvinar nisi. Mauris vel enim tincidunt, elementum diam sed, tincidunt nulla. Maecenas tempus vitae ligula et convallis. Nullam justo velit, dignissim a nisl at, blandit posuere leo. Maecenas ac scelerisque odio, eget placerat ipsum. Ut iaculis, tortor et ullamcorper fringilla, mauris neque dapibus arcu, eget suscipit libero libero ut nunc. Sed maximus enim a ligula facilisis, non efficitur dolor blandit. Curabitur venenatis mattis erat ac gravida."
|
|
|
|
Flow {
|
|
anchors.fill: parent
|
|
anchors.margins: 20
|
|
spacing: 20
|
|
|
|
PlasmaComponents.TextArea {
|
|
placeholderText: "CHEESE"
|
|
width: 150
|
|
height: 100
|
|
}
|
|
|
|
PlasmaComponents.TextArea {
|
|
text: root.longText
|
|
width: 150
|
|
height: 100
|
|
}
|
|
|
|
|
|
PlasmaComponents.TextArea {
|
|
text: root.longText
|
|
wrapMode: Text.Wrap
|
|
width: 150
|
|
height: 100
|
|
}
|
|
}
|
|
}
|