79542778

Date: 2025-03-29 04:10:23
Score: 0.5
Natty:
Report link

To have the scrollview go under the nav bar, use a ZStack like this, with the nav bar after the scrollview.

ZStack(alignment: .top) {
    ScrollView {
        Spacer(minLength: 40)
        LazyVGrid{}
    }
    CustomNavBar(navTitle: "Newsfeed").background(.thinMaterial)
}
    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: James Grote