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 (macOS)/MainView.swift

18 lines
307 B
Swift
Raw Normal View History

2020-11-18 08:18:26 -05:00
import SwiftUI
struct MainView: View {
@State private var username: String = ""
var body: some View {
VStack {
ProfileView(username: "redstrate")
}
}
}
struct MainView_Previews: PreviewProvider {
static var previews: some View {
MainView()
}
}