Create OnClicks for the Theme Buttons

This commit is contained in:
Finn M Glas 2020-05-22 21:39:13 +02:00
parent 5963277fe3
commit c81e6c06bc
No known key found for this signature in database
GPG key ID: 25037A2E81AB459C
2 changed files with 17 additions and 0 deletions

View file

@ -171,4 +171,18 @@ class SettingsActivity : AppCompatActivity() {
.setIcon(android.R.drawable.ic_dialog_alert)
.show()
}
/** Theme - related */
fun chooseDarkTheme(view: View) {
}
fun chooseFinnTheme(view: View) {
}
fun chooseCustomTheme(view: View) {
}
}