2021-11-04 18:10:22 +00:00
|
|
|
//
|
|
|
|
// PartsOfSpeechView.swift
|
|
|
|
// Toki Trainer
|
|
|
|
//
|
|
|
|
// Created by Avery Ada Pace on 11/4/21.
|
|
|
|
//
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct PartsOfSpeechView: View {
|
|
|
|
var selectedPartOfSpeech: String? = nil
|
|
|
|
|
2021-11-06 01:04:03 +00:00
|
|
|
@ObservedObject var tokiDictViewModel = TokiDictionaryViewModel()
|
|
|
|
|
|
|
|
var partsOfSpeech: [TokiPartOfSpeech]
|
2021-11-04 18:10:22 +00:00
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
VStack {
|
|
|
|
Text("Parts of Speech")
|
|
|
|
.padding()
|
|
|
|
VStack(alignment: .leading) {
|
|
|
|
ForEach(tokiDictViewModel.partsOfSpeech, id: \.pos) { pos in
|
|
|
|
HStack {
|
|
|
|
Text(pos.pos)
|
|
|
|
.frame(width: 45, height: 22, alignment: .center)
|
|
|
|
.background(Color(K.posColors[pos.pos]!))
|
|
|
|
.cornerRadius(5.0)
|
|
|
|
.padding(1)
|
|
|
|
Text(pos.definition)
|
|
|
|
Spacer()
|
|
|
|
}
|
|
|
|
//.background(.blue)
|
2021-11-06 01:04:03 +00:00
|
|
|
.background((selectedPartOfSpeech == pos.pos) ? Color(UIColor.systemGray4) : Color(UIColor.systemBackground))
|
2021-11-04 18:10:22 +00:00
|
|
|
.cornerRadius(5.0)
|
|
|
|
.padding(2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Spacer()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct PartsOfSpeechView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2021-11-06 01:04:03 +00:00
|
|
|
PartsOfSpeechView(selectedPartOfSpeech: "sep", partsOfSpeech: [TokiPartOfSpeech(pos: "sep", definition: "test")])
|
|
|
|
.preferredColorScheme(.dark)
|
2021-11-07 18:59:56 +00:00
|
|
|
PartsOfSpeechView(selectedPartOfSpeech: "sep", partsOfSpeech: [TokiPartOfSpeech(pos: "sep", definition: "test")])
|
2021-11-04 18:10:22 +00:00
|
|
|
}
|
|
|
|
}
|