π§Settings
Screens to configure necessary permissions in the application
Integrations
API_SETTINGS_NOTIFICATIONS_CHANNELS='/communications/notification-channels'How to use it?
import {SETTINGS_SCREENS} from 'LinkerStudio/modules/settings/constants';<Stack.Navigator>
{SETTINGS_SCREENS.map(screen => (
<Stack.Screen
key={screen.name}
name={screen.name}
component={screen.component}
options={{headerShown: false}}
/>
))}
</Stack.Navigator>Last updated