25 lines
504 B
Swift
25 lines
504 B
Swift
//
|
|
// SRToast.swift
|
|
// SynthReel
|
|
//
|
|
// Created by 湖北秦九 on 2025/11/13.
|
|
// Copyright © 2025 SR. All rights reserved.
|
|
//
|
|
|
|
|
|
import Toast
|
|
|
|
struct SRToast {
|
|
|
|
static func config() {
|
|
CSToastManager.setTapToDismissEnabled(false)
|
|
CSToastManager.setDefaultDuration(2)
|
|
CSToastManager.setDefaultPosition(CSToastPositionCenter)
|
|
}
|
|
|
|
static func show(text: String?) {
|
|
guard let text = text else { return }
|
|
SRTool.keyWindow?.makeToast(text)
|
|
}
|
|
}
|