From 729cb761803d741a644c18a6e9c8b6237402b48a Mon Sep 17 00:00:00 2001 From: Elizabeth Cray Date: Fri, 10 Jan 2025 15:28:01 -0500 Subject: [PATCH] End-Of-Session: added SwiftUI to KeyboardViewController + starting config saving --- awkbd/KeyboardView.swift | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 awkbd/KeyboardView.swift diff --git a/awkbd/KeyboardView.swift b/awkbd/KeyboardView.swift new file mode 100644 index 0000000..2c8a6bb --- /dev/null +++ b/awkbd/KeyboardView.swift @@ -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() +}