step 2 - fix linting mistakes
This commit is contained in:
parent
ca274bd206
commit
e7f3849187
|
@ -24,8 +24,10 @@ final class VideoPlayerViewModel: ViewModel {
|
|||
|
||||
// Manually kept state because VLCKit doesn't properly set "played"
|
||||
// on the VLCMediaPlayer object
|
||||
@Published var playerState: VLCMediaPlayerState = .buffering
|
||||
@Published var leftLabelText: String = "--:--"
|
||||
@Published
|
||||
var playerState: VLCMediaPlayerState = .buffering
|
||||
@Published
|
||||
var leftLabelText: String = "--:--"
|
||||
@Published
|
||||
var rightLabelText: String = "--:--"
|
||||
@Published
|
||||
|
|
|
@ -13,7 +13,9 @@ import UIKit
|
|||
class AppDelegate: NSObject, UIApplicationDelegate {
|
||||
static var orientationLock = UIInterfaceOrientationMask.all
|
||||
|
||||
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
|
||||
func application(_ application: UIApplication,
|
||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool
|
||||
{
|
||||
|
||||
// Lazily initialize datastack
|
||||
_ = SwiftfinStore.dataStack
|
||||
|
|
Loading…
Reference in New Issue