If you want to display a div when:
one or both variables are true => use OR (cond1 || cond2)
<div flex="40" layout="column" ng-if="expresion1 || expresion2" hide-xs>
both variables must be true => use AND (cond1 && cond2)
<div flex="40" layout="column" ng-if="expresion1 && expresion2" hide-xs>
In your particular case, if I understood correctly, you might have to use the OR operator.
source
share