Skip to content

Commit 2a7a5a6

Browse files
committed
[ADD] #335 Navigator 인터페이스 추가
1 parent ac0544d commit 2a7a5a6

File tree

1 file changed

+12
-0
lines changed
  • app/src/main/java/com/runnect/runnect/navigator/base

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.runnect.runnect.navigator.base
2+
3+
import android.app.Activity
4+
import android.content.Intent
5+
6+
interface Navigator {
7+
fun navigateFrom(
8+
activity: Activity,
9+
intentBuilder: Intent.() -> Intent = { this },
10+
withFinish: Boolean = false,
11+
)
12+
}

0 commit comments

Comments
 (0)