@@ -17,13 +17,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate | |||||
window?.backgroundColor = UIColor.white | window?.backgroundColor = UIColor.white | ||||
window?.makeKeyAndVisible() | window?.makeKeyAndVisible() | ||||
Bus.process( | |||||
MeetupId.K.meetupIdTextUI.rawValue, | |||||
MeetupId.K.meetupIdTextApp.rawValue, | |||||
MeetupId.shouldFormat | |||||
) | |||||
return true | return true | ||||
} | } | ||||
} | } |
@@ -3,7 +3,11 @@ import SwiftUI | |||||
final class VM: ObservableObject { | final class VM: ObservableObject { | ||||
@Published var text = "a:" | @Published var text = "a:" | ||||
let format = Bus.Processor( | |||||
MeetupId.K.meetupIdTextUI.rawValue, | |||||
MeetupId.K.meetupIdTextApp.rawValue, | |||||
MeetupId.shouldFormat | |||||
) | |||||
var subscriptions = [AnyCancellable]() | var subscriptions = [AnyCancellable]() | ||||
init() { | init() { | ||||