Files
SwiftUI/Examples/GitHub Search/GitHubSearchWithSwiftUI/View/RepositoryListView.swift
2019-06-06 11:16:28 +03:00

38 lines
1.1 KiB
Swift
Executable File

//
// RepositoryListView.swift
// GitHubSearchWithSwiftUI
//
// Created by marty-suzuki on 2019/06/05.
// Copyright © 2019 jp.marty-suzuki. All rights reserved.
//
import SwiftUI
struct RepositoryListView : View {
@EnvironmentObject private var viewModel: RepositoryListViewModel
@State private var text: String = ""
var body: some View {
NavigationView {
TextField($text,
placeholder: Text("Search reposipories..."),
onCommit: { self.viewModel.search(query: self.text) })
.frame(height: 40)
.padding(EdgeInsets(top: 0, leading: 8, bottom: 0, trailing: 8))
.border(Color.gray, cornerRadius: 8)
.padding(EdgeInsets(top: 0, leading: 16, bottom: 0, trailing: 16))
List {
ForEach(viewModel.repositories.identified(by: \.id)) { repository in
RepositoryView(repository: repository)
}
}
.navigationBarTitle(Text("Search🔍"))
}
}
}