Skip to content

Commit

Permalink
Merge pull request #259 from School-of-Company/refactor/258-use-expo-…
Browse files Browse the repository at this point in the history
…navhost-modifier-in-expo-app

🔀 :: (#258) - ExpoApp에서 Modifier를 사용하는 부분에서 NavHost에서 선언한 인자의 Modifier을 사용할 수 있도록 수정하였습니다.
  • Loading branch information
audgns10 authored Dec 19, 2024
2 parents 548f06c + dde991d commit d0869df
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@ fun ExpoApp(
}
) { paddingValues ->
// 네비게이션 호스트
Box(modifier = Modifier.padding(paddingValues = paddingValues)) {
ExpoNavHost(appState = appState)
}
ExpoNavHost(
appState = appState,
modifier = Modifier.padding(paddingValues = paddingValues)
)
}
}
}
Expand Down

0 comments on commit d0869df

Please sign in to comment.