Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import QtQuick.Http 2.0
- Http {
- id: root
- status: 200
- contentType: 'text/html'
- Html {
- Head { title: 'QtQuick.Http 2.0 demo!' }
- Body {
- H1 {
- Img { src: '/qt-logo.png'; style: 'vertical-align:middle' }
- Text { text: 'Have you ever thought about webpages written in QML?' }
- }
- Pre { text: "import QtQuick.Http 2.0
- Http {
- id: root
- status: 200
- contentType: 'text/html'
- Html {
- Head { title: 'QtQuick.Http 2.0 demo!' }
- Body {
- H1 {
- Img { src: '/qt-logo.png'; style: 'vertical-align:middle' }
- Text { text: 'Have you ever thought about webpages written in QML?' }
- }
- Pre { text: '...' }
- Text { text: '<< Back' }
- Text { text: ' | ' }
- A { href: 'index2.qml'; text: 'Next >>' }
- }
- }
- }
- "
- }
- Text { text: '<< Back' }
- Text { text: ' | ' }
- A { href: 'index2.qml'; text: 'Next >>' }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement