mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
18 lines
498 B
Swift
18 lines
498 B
Swift
//
|
|
// ShowInSnackbar.swift
|
|
//
|
|
//
|
|
// Created by Jackson Harper on 11/1/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public func showInLibrarySnackbar(_ message: String) {
|
|
let nname = Notification.Name("LibrarySnackBar")
|
|
NotificationCenter.default.post(name: nname, object: nil, userInfo: ["message": message])
|
|
}
|
|
|
|
public func showInReaderSnackbar(_ message: String) {
|
|
let nname = Notification.Name("ReaderSnackBar")
|
|
NotificationCenter.default.post(name: nname, object: nil, userInfo: ["message": message])
|
|
}
|