Files
PiliPlus/ios/Runner/AppDelegate.swift
bggRGjQaUbCoE 224bd88473 fix ios volume
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-09-05 14:46:07 +08:00

15 lines
471 B
Swift

import UIKit
import Flutter
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
application.applicationSupportsShakeToEdit = false // Disable shake to undo
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}