aboutsummaryrefslogtreecommitdiff
path: root/sample/src/main/kotlin/ca/allanwang/kau/sample/KPrefSample.kt
blob: fc4277f2324985b5f73466f2bfa380c8083df71c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package ca.allanwang.kau.sample

import android.graphics.Color
import ca.allanwang.kau.kpref.KPref
import ca.allanwang.kau.kpref.kpref

/**
 * Created by Allan Wang on 2017-06-07.
 */
object KPrefSample : KPref() {
    var textColor: Int by kpref("TEXT_COLOR", Color.WHITE)
    var accentColor: Int by kpref("ACCENT_COLOR", 0xffff8900.toInt())
    var bgColor: Int by kpref("BG_COLOR", 0xff303030.toInt())
    var check1: Boolean by kpref("check1", true)
    var check2: Boolean by kpref("check2", false)
    var check3: Boolean by kpref("check3", false)
    var text: String by kpref("text", "empty")
    var seekbar: Int by kpref("seekbar", 20)
}