Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@amir-hossein-karimi/react-native-app-tour
Advanced tools
ReactNative: Native App Tour Library (Android/iOS)
If this project has helped you out, please support us with a star 🌟
This library is a React Native bridge around native app tour libraries. It allows show/guide beautiful tours:
Android: KeepSafe/TapTargetView |
---|
iOS: aromajoin/material-showcase-ios |
---|
$ npm install react-native-app-tour --save
Supported react-native 61 and above
iOS Prerequisite: Please make sure
CocoaPods
is installed on your system
- Add the following to your `Podfile` -> `ios/Podfile` and run pod update:
use_native_modules!
pod 'RNAppTour', :path => '../node_modules/react-native-app-tour/ios'
use_frameworks! :linkage => :static
pod 'MaterialShowcase'
# Follow [Flipper iOS Setup Guidelines](https://fbflipper.com/docs/getting-started/ios-native)
# This is required because iOSPhotoEditor is implemented using Swift and we have to use use_frameworks! in Podfile
$static_framework = ['FlipperKit', 'Flipper', 'Flipper-Folly',
'CocoaAsyncSocket', 'ComponentKit', 'Flipper-DoubleConversion',
'Flipper-Glog', 'Flipper-PeerTalk', 'Flipper-RSocket', 'Yoga', 'YogaKit',
'CocoaLibEvent', 'OpenSSL-Universal', 'boost-for-react-native']
pre_install do |installer|
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
installer.pod_targets.each do |pod|
if $static_framework.include?(pod.name)
def pod.build_type;
Pod::BuildType.static_library
end
end
end
end
Please make sure Flipper iOS Setup Guidelines steps are added to Podfile, since MaterialShowcase is implemented using Swift and we have to use use_frameworks! in Podfile
Android
Please add below snippet into your app build.gradle
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
pod repo update
File not found in iOS
issue while setup, please refer ISSUE - 3 issue which might help you in order to resolve.Android
Trying to resolve view with tag which doesn't exist or can't resolve tag. Please add props collapasable: false
to your Viewlet appTourTarget = AppTourView.for(Button, {...native-library-props})
AppTour.ShowFor(appTourTarget)
let appTourSequence = new AppTourSequence()
this.appTourTargets.forEach(appTourTarget => {
appTourSequence.add(appTourTarget)
})
AppTour.ShowSequence(appTourSequence)
Note:
- Each component which is to be rendered in the tour should have a
key
prop. It is mandatory.- App Tour Target Properties are same as defined by KeepSafe/TapTargetView & aromajoin/material-showcase-ios
Prop | Type | Default | Note |
---|---|---|---|
order: mandatory | number | Specify the order of tour target | |
title | string | Specify the title of tour | |
description | string | Specify the description of tour | |
outerCircleColor | string: HEX-COLOR | Specify a color for the outer circle | |
targetCircleColor | string: HEX-COLOR | Specify a color for the target circle | |
titleTextSize | number | 20 | Specify the size (in sp) of the title text |
titleTextColor | string: HEX-COLOR | Specify the color of the title text | |
descriptionTextSize | number | 10 | Specify the size (in sp) of the description text |
descriptionTextColor | string: HEX-COLOR | Specify the color of the description text | |
targetRadius | number | 60 | Specify the target radius (in dp) |
cancelable | bool | true | Whether tapping anywhere dismisses the view |
Prop | Type | Default | Note |
---|---|---|---|
collapsable: mandatory | bool | Specify collapsable false if your view just contains children. Please read view#collapsable for the details | |
outerCircleAlpha | number | 0.96f | Specify the alpha amount for the outer circle |
textColor | string: HEX-COLOR | Specify a color for both the title and description text | |
dimColor | string: HEX-COLOR | If set, will dim behind the view with 30% opacity of the given color | |
drawShadow | bool | true | Whether to draw a drop shadow or not |
tintTarget | bool | true | Whether to tint the target view's color |
transparentTarget | bool | true | Specify whether the target is transparent (displays the content underneath) |
Prop | Type | Default | Note |
---|---|---|---|
backgroundPromptColor | string: HEX-COLOR | UIColor.blue | Specify background prompt color |
backgroundPromptColorAlpha | number | 0.96 | Specify background prompt color alpha |
titleTextAlignment | string | left | Specify primary text alignment: Left, Right, Top, Bottom |
descriptionTextAlignment | string | left | Specify secondary text alignment: Left, Right, Top, Bottom |
aniComeInDuration | number | 0.5 | Specify animation come In Duration |
aniGoOutDuration | number | 1.5 | Specify animation Go Out Duration |
aniRippleColor | string: HEX-COLOR | #FFFFFF | Specify ripple color |
aniRippleAlpha | number | 0.2 | Specify ripple alpha |
order
as a mandatory property to each targetkey
prop. It is mandatory.Have an idea? Found a bug? Please raise to ISSUES. Contributions are welcome and are greatly appreciated! Every little bit helps, and credit will always be given.
If you are using this library in one of your projects, add it in this list below. ✨
This library is provided under the Apache 2 License.
RNAppTour @ amir-hossein-karimi
I open-source almost everything I can, and I try to reply everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).
However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:
Starring and sharing the projects you like 🚀
If you're feeling especially charitable, please follow amir-hossein-karimi on GitHub.
Thanks! ❤️
amir-hossein-karimi.github.io
</ Pranav >
FAQs
React Native: Native App Tour Library
We found that @amir-hossein-karimi/react-native-app-tour demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.