Files

26 lines
474 B
QML
Raw Permalink Normal View History

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
}
}
}
}