This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 10 Min To Create The PERFECT Jetpack Compose OTP Screen With Animations – Code & Resources | |
| This Gist contains the essential code and resources mentioned in my YouTube tutorial: | |
| Watch the full video tutorial here: https://bit.ly/4ia6Dvq | |
| */ | |
| import android.os.Bundle | |
| import androidx.activity.ComponentActivity |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class MainActivity extends Activity | |
| // ... any code | |
| /** | |
| * Clear focus on touch outside for all EditText inputs. | |
| */ | |
| @Override | |
| public boolean dispatchTouchEvent(MotionEvent event) { | |
| if (event.getAction() == MotionEvent.ACTION_DOWN) { | |
| View v = getCurrentFocus(); |