prscX / react-native-app-tour

React Native: Native App Tour Library
Apache License 2.0
640 stars 119 forks source link

Transparent Target on Android doesnt work #77

Closed danieljgp2 closed 5 years ago

danieljgp2 commented 5 years ago

Hello, i m setting transparentTarget as false on the props for Android but is not working.

     ref={ref => {
        if (!ref) return;

        const props = {
          order: 2,
          title: "Filtra por categoría",
          description:
            "Encuentra tus comidas más rápido filtrandolas por categoría",
          outerCircleColor: s.palette.main,
          targetCircleColor: "#FFFFFF",
          titleTextColor: s.palette.accent,
          descriptionTextColor: "#FFFFFF",
          targetRadius: 0,
          transparentTarget: false,
          key: "previewMarketingMenuCategories",
          cancelable: true
        };

        this.appTourTargets.push(AppTourView.for(ref, { ...props }));
      }}

@prscX is there a specific way to pass this props ?