- Completed the blogs detail screen, also handled the language change. - added a nsnotification to handle the sidebar only on home an my list - Added api for like , unlike , fav remove, with data models. - handled the like unlike realtime, without the extra network call. - added realtime language change will update the fav cells.
15 lines
350 B
Swift
15 lines
350 B
Swift
//
|
|
// NsNotificationExtension.swift
|
|
// WOKA
|
|
//
|
|
// Created by Bilal on 04/06/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Notification.Name {
|
|
static let languageDidChange = Notification.Name("languageDidChange")
|
|
static let linkPush = Notification.Name("linkPush")
|
|
static let enableDisableSideBar = Notification.Name("enableDisableSideBar")
|
|
}
|