Adding location pin, location input

This commit is contained in:
metacryst
2025-11-11 14:19:56 -06:00
parent fa67271ae8
commit 02648859a8
9 changed files with 80 additions and 8 deletions

View File

@@ -26,6 +26,8 @@ class MarketGrid extends Shadow {
if (this.listings.length > 0) {
ZStack(() => {
// BuyModal()
for (let i = 0; i < this.listings.length; i++) {
const rating = this.listings[i].stars
const percent = (rating / 5)
@@ -74,6 +76,11 @@ class MarketGrid extends Shadow {
.marginBottom(0.5, em)
button("Buy Now")
.onClick((finished) => {
if(finished) {
}
})
})
.padding(1, em)