mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-17 06:14:21 +01:00
19 lines
415 B
Swift
19 lines
415 B
Swift
//
|
|
// MyCustomViewController.swift
|
|
// App
|
|
//
|
|
// Created by Paul Miller on 9/6/23.
|
|
//
|
|
|
|
import UIKit
|
|
import Capacitor
|
|
|
|
class MyCustomViewController: CAPBridgeViewController {
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
webView!.allowsBackForwardNavigationGestures = true
|
|
webView!.scrollView.bounces = false
|
|
webView!.scrollView.showsVerticalScrollIndicator = false
|
|
}
|
|
}
|