comparison LazyBearWatchOS Extension/NotificationView.swift @ 429:e4ca9898b79b

Add WatchOS Target
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Sat, 19 Jun 2021 16:20:58 +0200
parents
children
comparison
equal deleted inserted replaced
428:8c58ce834d95 429:e4ca9898b79b
1 //
2 // NotificationView.swift
3 // LazyBearWatchOS Extension
4 //
5 // Created by Dennis Concepción Martín on 19/6/21.
6 //
7
8 import SwiftUI
9
10 struct NotificationView: View {
11 var body: some View {
12 Text("Hello, World!")
13 }
14 }
15
16 struct NotificationView_Previews: PreviewProvider {
17 static var previews: some View {
18 NotificationView()
19 }
20 }