SwiftUI Landmarks App Tutorial Screen Navigates Back When Toggle Favorite

前端 未结 2 1381
后悔当初
后悔当初 2020-12-02 01:18

I\'m following this SwiftUI tutorial and downloaded the project files.

I built and ran the complete project without any modifications. In the app, if I:

2条回答
  •  半阙折子戏
    2020-12-02 02:03

    this happens because in the "main" list you toggled to "show only favorites". then you change in the detail the favorites (so it is no favorite landmark anymore) and because in swiftui the source of truth was changed (favorite) this item was removed from the main list and so it cannot be shown in the detail anymore because it is no member of the main list anymore, so the detail view just navigates back and show the favorite items only.

提交回复
热议问题