From 19463c9691ff1aed0e9caefa626ea2cd0cfd9443 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20M=C3=BCller-Seydlitz?= Date: Fri, 30 Aug 2024 13:33:59 +0200 Subject: [PATCH] Preparing to make OpenHABWidget an ObservableObject Getting the separatorInset back Reverting diffable data source to work on OpenHABWidget instead of OpenHABWidget.ID --- openHAB/FrameCellView.swift | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 openHAB/FrameCellView.swift diff --git a/openHAB/FrameCellView.swift b/openHAB/FrameCellView.swift new file mode 100644 index 00000000..4ff1acb7 --- /dev/null +++ b/openHAB/FrameCellView.swift @@ -0,0 +1,19 @@ +// +// FrameCellView.swift +// openHAB +// +// Created by Tim on 29.08.24. +// Copyright © 2024 openHAB e.V. All rights reserved. +// + +import SwiftUI + +struct FrameCellView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + FrameCellView() +}