Skip to content

Releases: mond-al/typer

ver 0.1.0 (initial simple version) deploy

03 Mar 17:55
ab3ce81
Compare
Choose a tag to compare

첫 배포. 아주 간단하게 타이핑 효과를 줄수 있습니다.

DEMO

Step 1. Add it in your root build.gradle at the end of repositories:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Step 2. Add the dependency

	dependencies {
	        implementation 'com.github.mond-al:typer:Tag'
	}

Step3. Just Use it!

Typer.typing(textView, "타이핑할 문자열", useCursor){
    Toast.makeText(this, "타이핑 끝", Toast.LENGTH_SHORT).show()
}