xref: /expo/docs/constants/FeatureFlags.cjs (revision 231b3b26)
1// If you change the flag value, you need to restart the dev server.
2const flags = {
3  exampleFlag: false,
4};
5
6const shouldShowFeaturePreviewLink = () => {
7  return Object.values(flags).some(isInPreview => isInPreview);
8};
9
10module.exports = {
11  ...flags,
12  shouldShowFeaturePreviewLink,
13};
14