CardView
struct CardView : ViewThis struct represents a card view that displays the details of a person. It conforms to the View protocol.
- 
                  
                  Binding to control the view mode. DeclarationSwift @Binding var isViewMore: Bool { get nonmutating set }
- 
                  
                  Metadata of the person. DeclarationSwift var metaData: [String : String]
- 
                  
                  Face bytes data. DeclarationSwift var faceBytes: [UInt8]
- 
                  
                  Grid items for the scroll view. DeclarationSwift let columns: [GridItem]
- 
                  
                  The body of the view. DeclarationSwift var body: some View { get }
- 
                  
                  Calculate the maximum height for the content in the scroll view DeclarationSwift func maxHeightForContent() -> CGFloat
