scroll stick

This commit is contained in:
Daniel Arantes Loverde
2026-02-12 15:05:09 -03:00
parent 38fc71718b
commit b027a10c8d
5 changed files with 1044 additions and 13 deletions

View File

@@ -32,11 +32,10 @@ struct FeaturedStoreCard: View {
.padding(10)
}
}
Text(store.name)
.font(AppTypography.heading3)
.foregroundStyle(AppColors.textPrimary)
.lineLimit(1)
HStack(spacing: 6) {
Image(systemName: "star.fill")
@@ -129,6 +128,8 @@ struct FeaturedStoreCardModel: Identifiable {
let isFavorite: Bool
let iconName: String
let imageURL: String?
let logoURL: String?
let coverURL: String?
}
struct SpecialOfferCard: View {