Mercurial > public > lazybear
view LazyBearWatchOS Extension/Views/Home/HomeView.swift @ 450:4b8031e696e8
Change Bazooka to Alamofire
Alamofire is compatible with WatchOS and MacOS
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Sat, 26 Jun 2021 16:36:53 +0200 |
parents | 8621ba6fd457 |
children | bb69f9d1d20f |
line wrap: on
line source
// // HomeView.swift // LazyBearWatchOS Extension // // Created by Dennis Concepción Martín on 22/6/21. // import SwiftUI import CoreData struct HomeView: View { @FetchRequest(entity: WatchlistCompany.entity(), sortDescriptors: []) var watchlistCompanies: FetchedResults<WatchlistCompany> var body: some View { VStack { } } } struct HomeView_Previews: PreviewProvider { static var previews: some View { HomeView() } }