mirror of
https://github.com/Finb/Bark.git
synced 2025-12-08 21:36:01 +00:00
24 lines
464 B
Swift
24 lines
464 B
Swift
//
|
|
// BaseViewController.swift
|
|
// Bark
|
|
//
|
|
// Created by huangfeng on 2018/6/25.
|
|
// Copyright © 2018 Fin. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import Material
|
|
class BaseViewController: UIViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
self.view.backgroundColor = Color.grey.lighten5
|
|
}
|
|
|
|
override var preferredStatusBarStyle: UIStatusBarStyle{
|
|
get {
|
|
return .lightContent
|
|
}
|
|
}
|
|
}
|