An easy-to-use customizable show case view with circular reveal animation.
Add this in your root build.gradle
file (not your module build.gradle
file):
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Then, add the library to your module build.gradle
dependencies {
implementation 'com.github.faruktoptas:FancyShowCaseView:1.3.5'
}
new FancyShowCaseView.Builder(this)
.focusOn(view)
.title("Focus on View")
.build()
.show();
Please see wiki for more samples.
(feel free to send me new projects)
Thanks to DigitalSa1nt for the Xamarin ported version Xamarin.ShowcaseView
You can contribute by opening a pull request to dev branch.Please try to push one feature in one commit for a clean commit history.