Created
February 13, 2019 12:48
-
-
Save towc/6f6d2e95f396483bcb5e45a8f088028a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import QtQuick 2.12 | |
import QtQuick.Controls 2.12 | |
import QtQuick.Controls.Material 2.12 | |
import QtQuick.Layouts 1.12 | |
ApplicationWindow { | |
id: window | |
visible: true | |
width: 400; height: 200 | |
Material.theme: Material.Dark | |
Material.accent: Material.Purple | |
ListModel { | |
id: todos | |
property int counter: 0 | |
ListElement { text: 'do this'; todoId: 0 } | |
} | |
RowLayout { | |
TodoInput { | |
width: window.width | |
model: todos | |
onAdd: { | |
++todos.counter; | |
console.log(todo, todos.counter) | |
todos.append({ | |
text: todo, | |
todoId: todos.counter, | |
}); | |
console.log(todos.count) | |
} | |
} | |
TodoList { | |
width: window.width | |
model: todos | |
onRemove: { | |
todos.remove(todos.findIndex(t => t.todoId === todoId)); | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import QtQuick 2.12 | |
import QtQuick.Controls 2.12 | |
import QtQuick.Layouts 1.12 | |
Item { | |
id: root | |
signal add(string todo) | |
property var model | |
RowLayout { | |
anchors.horizontalCenter: parent.horizontalCenter | |
TextField { | |
id: input | |
Text { | |
anchors.fill: parent | |
anchors.verticalCenter: input.verticalCenter | |
id: placeholder | |
text: 'Remember the milk' | |
color: '#aaa' | |
visible: !input.text && !input.activeFocus | |
} | |
} | |
Button { | |
text: 'add' | |
onClicked: { | |
add(input.text) | |
input.text = ''; | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import QtQuick 2.12 | |
import QtQuick.Controls 2.12 | |
import QtQuick.Layouts 1.12 | |
Item { | |
id: root | |
signal remove() | |
Text { | |
text: text | |
} | |
Button { | |
text: 'x' | |
onClicked: root.remove() | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import QtQuick 2.12 | |
import QtQuick.Controls 2.12 | |
Item { | |
id: root | |
signal remove(int todoId) | |
property var model | |
Component { | |
id: testing | |
Text { | |
Component.onCompleted: console.log('fromtext', text, todoId) | |
text: text + ' ' + todoId | |
} | |
} | |
ListView { | |
model: model | |
delegate: testing | |
//TodoItem { | |
// onRemove: remove(id) | |
//} | |
Component.onCompleted: console.log('list completed') | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment