view LazyBearWatchOS Extension/ContentView.swift @ 447:8621ba6fd457

Fixes #48
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Wed, 23 Jun 2021 10:54:47 +0200
parents e4ca9898b79b
children bb69f9d1d20f
line wrap: on
line source

//
//  ContentView.swift
//  LazyBearWatchOS Extension
//
//  Created by Dennis Concepción Martín on 19/6/21.
//

import SwiftUI

struct ContentView: View {
    var body: some View {
        VStack {
            ForEach((1..<4)) { _ in
                Text("Hello")
            }
            .navigationTitle("Lazybear")
        }
    }
}

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}