How to introduce a brand of trainer in response to your own android?

Required to complete a Coach tag or storefront in my native React app. After googling, I did not get any code or library that could get help.

Can someone suggest me how can I achieve the sign of the coach in the return native?

Example:

enter image description here

I do not want to overlay the image with the image with transparency. Because this will create a problem when starting the application in landscape mode. And for this approach, I need to save all DPI images in the appropriate folders.

I need a correct and general solution. Please, help.

+7
react-native showcaseview react-native-android react-native-ios react-native-fbsdk
source share
1 answer

There is a ready-made solution for this.

You can try: React Native Joyride (npm install --save response-native-joyride)

Here you can find the complete working solution: https://github.com/okgrow/react-native-co-pilot

as simple as this code:

import { joyride, joyridable, JoyrideStep } from 'react-native-joyride'; const JoyrideText = joyridable(Text); class HomeScreen { render() { return ( <View> <JoyrideStep text="This is a hello world example!" order={1} name="hello"> <JoyrideText>Hello world!</JoyrideText> </JoyrideStep> </View> ); } } 
+4
source share

All Articles