100-days-of-swiftui-and-com.../day-092/Projects/Project18Concepts/Project18Concepts/Scenes/Day 93/NestedGeometryReadersCoverF...

54 lines
965 B
Swift
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NestedGeometryReadersCoverFlowExample.swift
// Project18Concepts
//
// Created by CypherPoet on 1/24/20.
//
//
import SwiftUI
struct NestedGeometryReadersCoverFlowExample {
}
// MARK: - View
extension NestedGeometryReadersCoverFlowExample: View {
var body: some View {
GeometryReader { geometry in
ScrollView(.horizontal, showsIndicators: false) {
SideScrollingRectangleFlowView(container: geometry)
}
}
.edgesIgnoringSafeArea(.all)
}
}
// MARK: - Computeds
extension NestedGeometryReadersCoverFlowExample {
}
// MARK: - View Variables
extension NestedGeometryReadersCoverFlowExample {
}
// MARK: - Private Helpers
private extension NestedGeometryReadersCoverFlowExample {
}
// MARK: - Preview
struct NestedGeometryReadersCoverFlowExample_Previews: PreviewProvider {
static var previews: some View {
NestedGeometryReadersCoverFlowExample()
}
}