1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import SwiftUI
-
- struct NWebView: View {
-
-
- @State var url = ""
- @ObservedObject var viewModel = ViewModel()
- @State var showLoader = false
- @State var message = ""
- @State var webTitle = ""
-
- @Binding var showing : Bool
- var body: some View {
-
- VStack{
-
- HStack{
-
-
-
- }
-
-
- WebView(url: .publicUrl, http_url: url, viewModel: viewModel)
- .navigationBarTitle(Text(webTitle), displayMode: .inline)
- }
- .onAppear{
-
- }
-
- }
-
-
- func goBack() {
-
- }
-
- func goForward() {
- }
- }
|