Crypto branding

This commit is contained in:
Ivan Murashov
2018-03-09 08:48:03 +03:00
parent ff72bd5403
commit 19f1b7993d
6 changed files with 160 additions and 163 deletions

View File

@@ -17,6 +17,7 @@ class Resources {
case 'pip': return new Color(0xff008794);
case 'autobonus': return new Color(0xffeb0004);
case 'dinect': return new Color(0xff3daee3);
case 'crypto': return new Color(0xffffc34d);
default: return new Color(0xffffffff);
}
}
@@ -26,6 +27,8 @@ class Resources {
case 'pip': return new Color(0xfff49935);
case 'autobonus': return new Color(0xffeb0004);
case 'dinect': return new Color(0xff33cc99);
case 'dinect': return new Color(0xff33cc99);
case 'crypto': return new Color(0x0f3d87);
default: return new Color(0xffffffff);
}
}

View File

@@ -48,7 +48,7 @@ class _SplashScreenState extends BaseState<SplashScreen> {
return a ? new Container(
decoration: new BoxDecoration(
image: new DecorationImage(
image: new ExactAssetImage(Resources.getSplash(nullq)),
image: new ExactAssetImage(Resources.getSplash(null)),
fit: BoxFit.cover))) : getScreenContent();
}