|
//
// ToastOption.swift
// PaiaiDataKit
//
// Created by FFIB on 2019/1/18.
// Copyright © 2019 FFIB. All rights reserved.
//
import UIKit
public struct ToastOption {
var tintColor: UIColor = UIColor.white
var backgroundColor: UIColor = UIColor(red: 0, green: 0, blue: 0, alpha: 1)
var font: UIFont = UIFont.systemFont(ofSize: 14)
public static var `default`: ToastOption {
return ToastOption()
}
}
|