e30f86fd8a
This includes us moving the population of visual tokens to be placed by a QML file instead of in C++, which was what we wanted anyway.
26 lines
474 B
QML
26 lines
474 B
QML
import QtQuick;
|
|
import QtQuick.Controls as QQC2
|
|
import "../../mobile" as Mobile
|
|
import "../../Flowee" as Flowee
|
|
import Flowee.org.pay
|
|
|
|
Flickable {
|
|
id: root
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
contentWidth: width
|
|
contentHeight: nfts.height
|
|
|
|
Column {
|
|
id: nfts
|
|
Repeater {
|
|
model: tokens.visualTokens
|
|
|
|
VisualNFT {
|
|
width: root.width - 20
|
|
height: width
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|