1
Fork 0
This repository has been archived on 2025-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
mobilefort/MobileFort/MobileFort/ContentView.swift
2020-06-03 21:33:48 -04:00

17 lines
306 B
Swift

import SwiftUI
struct ProfileView: View {
var body: some View {
Text("Hello, world!")
}
}
struct MainView: View {
var body: some View {
NavigationView {
NavigationLink(destination: ProfileView()) {
Text("Show Feed")
}
}
}
}