■ Shell 클래스의 GoToAsync 메소드를 사용해 뒤로 탐색하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
await Shell.Current.GoToAsync(".."); await Shell.Current.GoToAsync("../route"); await Shell.Current.GoToAsync("../../route"); |
■ Shell 클래스의 GoToAsync 메소드를 사용해 뒤로 탐색하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
await Shell.Current.GoToAsync(".."); await Shell.Current.GoToAsync("../route"); await Shell.Current.GoToAsync("../../route"); |