Version 2.0.2 - card background now customisable, tablet layout changed

This commit is contained in:
Deniz Düzgören
2019-06-02 17:57:57 +02:00
parent abc3309acd
commit d4cef4f25d
23 changed files with 379 additions and 450 deletions
@@ -14,15 +14,15 @@ public class SubstViewModel(application: Application) : AndroidViewModel(applica
allSubst = repository.allSubst
}
fun insert(subst: Subst) {
fun insertSubst(subst: Subst) {
repository.insert(subst)
}
fun update(subst: Subst) {
fun updateSubst(subst: Subst) {
repository.update(subst)
}
fun delete(subst: Subst) {
fun deleteSubst(subst: Subst) {
repository.delete(subst)
}