Files
pay/guis/mobile/ct/VisualNFTsGallery.qml
tomFlowee e30f86fd8a Also make visual NFTs follow 'all wallets' concept
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.
2026-03-15 17:52:17 +01:00

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