getThirdTabIcon static method
Implementation
static IconData getThirdTabIcon() {
switch (AppConfig.instance.appInUse) {
case AppInUse.c:
return FontAwesomeIcons.building;
case AppInUse.d:
return FontAwesomeIcons.shop;
//TODO return Icons.radio;
case AppInUse.e:
return FontAwesomeIcons.shop;
// case AppInUse.g:
// return FontAwesomeIcons.building;
default:
return FontAwesomeIcons.shop;
}
}