Skip to content

Instantly share code, notes, and snippets.

@O-O-wl
Created May 28, 2020 12:20
Show Gist options
  • Save O-O-wl/3b68c057b9bdd1e892b623fd30c047e8 to your computer and use it in GitHub Desktop.
Save O-O-wl/3b68c057b9bdd1e892b623fd30c047e8 to your computer and use it in GitHub Desktop.
State
struct State {
var onProgress: Bool // 로딩 여부 표현
var query: String // 현재 입력된 query
var autoCompletions: [String] // 표현되는 자동 완성 문자열들
var searchResults: [SearchResult] // 검색 결과 데이터
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment