Parts of Speech buttons, safe area inset

This commit is contained in:
Avery Pace 2021-11-03 19:38:53 -04:00
parent 3b2b0bc3b5
commit c7f50a4d3a

View File

@ -13,23 +13,40 @@ struct ContentView: View {
@ObservedObject var jsonLoader = TokiJSONLoader() @ObservedObject var jsonLoader = TokiJSONLoader()
var body: some View { var body: some View {
VStack {
TextField("Enter Toki Pona Word or Phrase", text: /*@START_MENU_TOKEN@*//*@PLACEHOLDER=Value@*/.constant("")/*@END_MENU_TOKEN@*/)
.multilineTextAlignment(.center)
.padding(8)
List(jsonLoader.dictionary, id: \.word) { entry in List(jsonLoader.dictionary, id: \.word) { entry in
VStack(alignment: .leading) { VStack(alignment: .leading) {
Text(entry.word) Text(entry.word)
.font(.title) .font(.title)
ForEach(entry.definitions, id: \.pos) { definition in ForEach(entry.definitions, id: \.pos) { definition in
HStack(alignment: .top) { HStack(alignment: .top) {
Button(action: openPartsOfSpeechView) {
Text(definition.pos) Text(definition.pos)
.frame(width: 60, height: 22, alignment: .center) .frame(width: 45, height: 22, alignment: .center)
.foregroundColor(.black)
.background(Color(K.posColors[definition.pos]!)) .background(Color(K.posColors[definition.pos]!))
.cornerRadius(5.0) .cornerRadius(5.0)
.padding(4) .padding(4)
}
Text(definition.definition) Text(definition.definition)
.fixedSize(horizontal: false, vertical: true) .fixedSize(horizontal: false, vertical: true)
.padding(4) .padding(4)
} }
}} }
}
}
.safeAreaInset(edge: .bottom) {
HStack() {
Button(action: openPartsOfSpeechView) {
Text("Parts of Speech")
}
.padding(8)
}
.frame(maxWidth: .infinity)
.background(.thinMaterial)
} }
.onAppear { .onAppear {
self.jsonLoader.loadDictionary() self.jsonLoader.loadDictionary()
@ -37,6 +54,11 @@ struct ContentView: View {
} }
} }
func openPartsOfSpeechView() {
print("Button pressed.")
}
}
struct ContentView_Previews: PreviewProvider { struct ContentView_Previews: PreviewProvider {
static var previews: some View { static var previews: some View {