We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aaa9a2 commit 86cd79fCopy full SHA for 86cd79f
TrollFools/AppListCell.swift
@@ -141,11 +141,11 @@ struct AppListCell: View {
141
if #available(iOS 15.0, *) {
142
Text(highlightedId)
143
.font(.subheadline)
144
- .lineLimit(2)
+ .lineLimit(app.isAdvertisement ? 2 : 1)
145
} else {
146
Text(app.id)
147
148
149
}
150
151
TrollFools/AppListView.swift
@@ -138,8 +138,10 @@ struct AppListView: View {
138
139
140
Section {
- if !appList.isPaidProductInstalled {
- advertisementButton
+ if #available(iOS 15, *) {
+ if !appList.isPaidProductInstalled {
+ advertisementButton
+ }
filteredAppList(appList.trollApplications)
0 commit comments