End-Of-Session: added SwiftUI to KeyboardViewController + starting config saving

This commit is contained in:
Elizabeth Cray 2025-01-10 15:28:01 -05:00
parent 1e4f0606a3
commit 729cb76180

19
awkbd/KeyboardView.swift Normal file
View File

@ -0,0 +1,19 @@
//
// KeyboardView.swift
// AllenWrench
//
// Created by Elizabeth Cray on 1/10/25.
// Copyright © 2025 Cray. All rights reserved.
//
import SwiftUI
struct KeyboardView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
KeyboardView()
}