Files
ContainerController/Example/ContainerControllerSwift/ExamplesSettings/UI/Cell/ExampleCellStyle.swift
T
2020-06-10 15:00:22 +03:00

52 lines
1.6 KiB
Swift
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// ExampleCellStyle.swift
// ContainerController
//
// Created by Рустам Мотыгуллин on 02/06/2020.
// Copyright © 2020 mrusta. All rights reserved.
//
import UIKit
import ContainerControllerSwift
// MARK: - Cell Style
class ExampleCell: TableAdapterCell {
}
extension ExampleCell {
public enum Style: String {
case `default` = ""
case shadowContainer = "ShadowContainer"
case movingEnabled = "MovingEnabled"
case cornerRadius = "CornerRadius"
case footerPadding = "FooterView.Padding"
case headerView = "HeaderView"
case footerView = "FooterView"
case color = "BackgroundColor"
case blur = "Blur"
case scroll = "ScrollView"
case trackingPosition = "TrackingPosition"
case scrollIndicatorInsetsTop = "↓ .Scroll.Indicator.Insets.Top"
case scrollIndicatorInsetsBottom = "↑ .Scroll.Indicator.Insets.Bottom"
case moveType = "MoveType"
case top = "↓ .Top"
case middle = "↑ .Middle"
case bottom = "↑ .Bottom "
case middleEnable = "MiddleEnable"
case insetsRight = "Insets.Right"
case insetsLeft = "Insets.Left"
case shadowBackground = "ShadowBackground"
case landscapeTop = "↓ Landscape.Top"
case landscapeMiddle = "↑ Landscape.Middle"
case landscapeBottom = "↑ Landscape.Bottom "
case landscapeMiddleEnable = "Landscape.MiddleEnable"
case landscapeInsetsRight = "Landscape.Insets.Right"
case landscapeInsetsLeft = "Landscape.Insets.Left"
case landscapeShadowBackground = "Landscape.ShadowBackground"
}
}