Skip to content

Instantly share code, notes, and snippets.

@kmagiera
Created June 12, 2020 07:58
Show Gist options
  • Save kmagiera/022fe533a6f41f024dd635815962eb81 to your computer and use it in GitHub Desktop.
Save kmagiera/022fe533a6f41f024dd635815962eb81 to your computer and use it in GitHub Desktop.
const style = useAnimatedStyle(() => {
if (enabled) {
return {
opacity: 1,
...otherStyles,
};
} else {
return {
opacity: 0,
...someDisabledStyles,
};
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment