Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Better way of fetching json #3

Merged
merged 2 commits into from
Nov 13, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Allow new way of fetching json
  • Loading branch information
AppInstalleriOSGH authored Nov 12, 2022
commit 817971b906fe720645fd4cade490b03ede0b3c38
5 changes: 2 additions & 3 deletions TrollApps/TrollApps/AppsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@ import SwiftUI

struct AppsView: View {
@Environment(\.openURL) var openURL
@ObservedObject var fetch = fetchtd()


var body: some View {
NavigationView {
List(fetch.jsonstuff) { json in
List(FetchApps()) { json in
Label {
HStack {
Text(json.title)
Expand Down