ViewSolutions/README.md

17 lines
326 B
Markdown
Raw Normal View History

2020-04-27 19:00:06 +03:00
# ViewSolutions
View solutions of qml for quasarapp projects
2020-04-29 21:26:46 +03:00
QML classes:
#### ImageView
This is animate image viewer
##### Example:
``` qml
ImageView {
anchors.fill: parent
soucre: "qrc:/img/images/example.png"
text: "exampele"
anchors.margins: 100
borderColor: "red"
}
```