This commit is contained in:
xaoxuu 2020-06-23 10:35:15 +08:00
parent 8bd68d36f6
commit f0e6cb2fda
2 changed files with 30 additions and 25 deletions

View File

@ -44,6 +44,9 @@ class TestToastVC: BaseListVC {
}.startRotate()
simulateSync()
} else if row == 1 {
if let _ = Toast.find("progress").last {
} else {
Toast.push("progress") { (t) in
t.update { (vm) in
vm.scene = .loading
@ -75,6 +78,8 @@ class TestToastVC: BaseListVC {
}
}
}
}
} else if row == 2 {
let t = Toast.push(scene: .success, title: "同步成功", message: "点击查看详情")
t.didTapped { [weak self, weak t] in

View File

@ -15,6 +15,6 @@ extension String {
extension ProHUD {
static var safeAreaInsets: UIEdgeInsets {
return Inspire.shared.screen.updatedSafeAreaInsets
return Inspire.shared.screen.safeAreaInsets
}
}