βΉοΈInfo Onboarding
Screens with information that help the user know the functionalities found in the application.
Integrations
API_INFO_ONBOARDING_SLIDE='/contents/onboardings/types/$APP_ONBOARDING?includeSlides=true'How to use it?
import {INFO_ONBOARDING_SCREENS} from 'LinkerStudio/modules/infoOnboarding/constants';<Stack.Navigator>
{INFO_ONBOARDING_SCREENS.map(screen => (
<Stack.Screen
key={screen.name}
name={screen.name}
component={screen.component}
options={{headerShown: false}}
/>
))}
</Stack.Navigator>Last updated