mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-01-16 14:06:40 +01:00
38 lines
1.1 KiB
Swift
Executable File
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🔍"))
|
|
}
|
|
}
|
|
}
|