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"
|
// Manually kept state because VLCKit doesn't properly set "played"
|
||||||
// on the VLCMediaPlayer object
|
// on the VLCMediaPlayer object
|
||||||
@Published var playerState: VLCMediaPlayerState = .buffering
|
@Published
|
||||||
@Published var leftLabelText: String = "--:--"
|
var playerState: VLCMediaPlayerState = .buffering
|
||||||
|
@Published
|
||||||
|
var leftLabelText: String = "--:--"
|
||||||
@Published
|
@Published
|
||||||
var rightLabelText: String = "--:--"
|
var rightLabelText: String = "--:--"
|
||||||
@Published
|
@Published
|
||||||
|
|
|
@ -13,7 +13,9 @@ import UIKit
|
||||||
class AppDelegate: NSObject, UIApplicationDelegate {
|
class AppDelegate: NSObject, UIApplicationDelegate {
|
||||||
static var orientationLock = UIInterfaceOrientationMask.all
|
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
|
// Lazily initialize datastack
|
||||||
_ = SwiftfinStore.dataStack
|
_ = SwiftfinStore.dataStack
|
||||||
|
|
Loading…
Reference in New Issue