### Using Default Header Views with AxisSheet Source: https://github.com/jasudev/axissheet/blob/main/README.md Demonstrates how to present a sheet with default header views using the AxisSheet initializer or the axisSheet modifier. ```swift AxisSheet(isPresented: $isPresented, constants: constants) { Text("Content View") } ``` ```swift Text("Content View") .axisSheet(isPresented: $isPresented, constants: constants) ``` -------------------------------- ### Using Custom Header Views with AxisSheet Source: https://github.com/jasudev/axissheet/blob/main/README.md Shows how to present a sheet with custom header views using the AxisSheet initializer or the axisSheet modifier. ```swift AxisSheet(isPresented: $isPresented, constants: constants, header: { Rectangle().fill(Color.red.opacity(0.5)) .overlay(Text("Header")) }, content: { Text("Content View") }) ``` ```swift Text("Content View") .axisSheet(isPresented: $isPresented, constants: constants) { Rectangle().fill(Color.red.opacity(0.5)) .overlay(Text("Header")) } ``` -------------------------------- ### Adding AxisSheet as a Dependency via Swift Package Manager Source: https://github.com/jasudev/axissheet/blob/main/README.md Instructions for adding the AxisSheet library to your project's dependencies in Package.swift. ```swift dependencies: [ .package(url: "https://github.com/jasudev/AxisSheet.git", .branch("main")) ] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.