├── .gitignore ├── LICENSE ├── README.md └── WKWebViewLocal ├── WKWebViewLocal.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── WKWebViewLocal ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── ContentView.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── WKWebViewLocalApp.swift ├── WebViewModel.swift ├── WebViewRepresentable.swift └── Web_Assets ├── css └── test.css ├── images └── pic.png ├── index.html └── page.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/README.md -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/ContentView.swift -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/WKWebViewLocalApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/WKWebViewLocalApp.swift -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/WebViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/WebViewModel.swift -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/WebViewRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/WebViewRepresentable.swift -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/Web_Assets/css/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/Web_Assets/css/test.css -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/Web_Assets/images/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/Web_Assets/images/pic.png -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/Web_Assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/Web_Assets/index.html -------------------------------------------------------------------------------- /WKWebViewLocal/WKWebViewLocal/Web_Assets/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garynewby/WKWebView-Local/HEAD/WKWebViewLocal/WKWebViewLocal/Web_Assets/page.html --------------------------------------------------------------------------------