Move logout button to settings. Replace logout button in menu with shutdown button.

This commit is contained in:
Ivan Murashov
2018-02-05 20:02:36 +03:00
parent b19381f00c
commit 5f2d67bbc1
23 changed files with 433 additions and 136 deletions

View File

@@ -7,7 +7,8 @@ class Resources {
}
static String getSplash(String app) {
return 'assets/${app != null ? app : 'pip'}_splash.png';
// app != null ? app :
return 'assets/${'pip'}_splash.png';
}
static Color getPrimaryColor(String app) {
@@ -27,4 +28,4 @@ class Resources {
default: return new Color(0xffffffff);
}
}
}
}