CLASS
BaseViewControllerStyle
Contents
- Methods
init(headerTextAppearance:headerTextColor:messagesStyle:linksStyle:paddingLeft:paddingTop:paddingRight:paddingBottom:backgroundColor:)
 
public class BaseViewControllerStyle: UIStyle
The UIStyle subclass used for BaseViewController UI styling definitions.
- Note: Available BaseViewControllerStyle Theme configuration options:
 
- paddingLeft: Number
- paddingTop: Number
- paddingRight: Number
- paddingBottom: Number
- messagesStyle: String
- headerTextStyle: String
- linksStyle: String
Methods
init(headerTextAppearance:headerTextColor:messagesStyle:linksStyle:paddingLeft:paddingTop:paddingRight:paddingBottom:backgroundColor:)
public init(headerTextAppearance: TextAppearance,
            headerTextColor: UIColor,
            messagesStyle: StackViewStyle,
            linksStyle: StackViewStyle,
            paddingLeft: Double,
            paddingTop: Double,
            paddingRight: Double,
            paddingBottom: Double,
            backgroundColor: UIColor?)
Creates a BaseViewControllerStyle.
- Parameters:
- headerTextAppearance: The text appearance for the header.
 - headerTextColor: The text color for the header.
 - messagesStyle: The stack view style for the messages area.
 - linksStyle: The stack view style for the links area.
 - paddingLeft: The left padding of the view.
 - paddingTop: The top padding of the view.
 - paddingRight: The right padding of the view.
 - paddingBottom: The bottom padding of the view.
 - backgroundColor: The background color.
 
 
Parameters
| Name | Description | 
|---|---|
| headerTextAppearance | The text appearance for the header. | 
| headerTextColor | The text color for the header. | 
| messagesStyle | The stack view style for the messages area. | 
| linksStyle | The stack view style for the links area. | 
| paddingLeft | The left padding of the view. | 
| paddingTop | The top padding of the view. | 
| paddingRight | The right padding of the view. | 
| paddingBottom | The bottom padding of the view. | 
| backgroundColor | The background color. |