개발자의 정보/Mobile App3 [Flutter] InkWell vs GestureDetector - 다른점은? 둘 다 onTap, onLongPress 등과 같은 많은 공통 기능을 제공합니다. 주요 차이점은 GestureDetector가 드래그 등과 같은 더 많은 컨트롤을 제공한다는 것입니다. 반면에 InkWell에서 제공하는 파급 효과 탭은 포함하지 않습니다. 필요에 따라 둘 중 하나를 사용할 수 있습니다. 잔물결 효과가 InkWell과 함께 사용되기를 원하거나, GestureDetector로 더 많은 컨트롤이 필요하거나, 두 가지를 결합할 수도 있습니다. 2021. 9. 18. Android 에서 [Full screen mode] 전체화면 설정, 해제 Kotlin private fun hideSystemUI() { // Enables regular immersive mode. // For "lean back" mode, remove SYSTEM_UI_FLAG_IMMERSIVE. // Or for "sticky immersive," replace it with SYSTEM_UI_FLAG_IMMERSIVE_STICKY window.decorView.systemUiVisibility = (View.SYSTEM_UI_FLAG_IMMERSIVE // Set the content to appear under the system bars so that the // content doesn't resize when the system bars hide and sho.. 2020. 2. 7. EditText focus issue. If you want to clear focus on EditText view when you click or touch other places. Insert below code in your Activity you want to apply. @Override public boolean dispatchTouchEvent(MotionEvent event) { if (event.getAction() == MotionEvent.ACTION_DOWN) { View v = getCurrentFocus(); if ( v instanceof EditText) { Rect outRect = new Rect(); v.getGlobalVisibleRect(outRect); if (!outRect.contains((int).. 2020. 2. 1. 이전 1 다음