Dialog With Navigation
Dialog는 Navigation으로 연결할 수 있다!Dialog도 결국 흐름에 연결된 화면이기때문~ Dialog Fragment를 만들고class MyDialog : BottomSheetDialogFragment() { override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle? ): View? { return inflater.inflate(R.layout.my_dialog, container, false) } } 팔레트에서 DialogFragment로 연결인데… 요렇게 들어오면 안된다…Dialog기 때문에 Dialog로 들어와야됨. 코드 좀 고쳐줌< dialog android:..
2023.08.08