project-template-ios/templates/tablecontentcontroller.must...

23 lines
547 B
Plaintext

import LeadKit
import RxKeyboard
class {{project_name}}TableContentController<ViewModel>: BaseTableContentController<ViewModel> {
override var preferredStatusBarStyle: UIStatusBarStyle {
return .lightContent
}
override func bindViews() {
super.bindViews()
bindBottomInsetBinding(from: RxKeyboard.instance.visibleHeight)
}
override func configureAppearance() {
super.configureAppearance()
view.backgroundColor = .white
tableView.showsVerticalScrollIndicator = false
}
}