added iOS source code
[wl-app.git] / iOS / WolneLektury / Reader / WLReaderConfig.swift
1 //
2 //  WLReaderConfig.swift
3 //  WolneLektury
4 //
5 //  Created by Pawel Dabrowski on 25/06/2018.
6 //  Copyright © 2018 Fundacja Nowoczesna Polska. All rights reserved.
7 //
8
9 import UIKit
10 import FolioReaderKit
11
12 class WLReaderConfig: FolioReaderConfig {
13
14     override init() {
15         super.init()
16         self.tintColor = Constants.Colors.lightGreenBgColor()
17         self.displayTitle = true
18         self.allowSharing = false
19         self.enableTTS = false
20         self.useReaderMenuController = false
21     }
22 }