This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Conditionally include a tip - could be achieved with parameters on the tip, but this could save repetition if there are enough tips that depend on the same condition. | |
Usage: | |
.showTipConditionally(someCondition) { view in | |
view | |
.popoverTip(myTip) | |
.whateverOtherModifiers() | |
} | |
*/ |