Show relaunch YouTube snackbars

This commit is contained in:
Foxster
2023-12-25 00:27:46 -08:00
parent d50d9e018e
commit a14d95b2d3
2 changed files with 33 additions and 9 deletions
+16
View File
@@ -194,4 +194,20 @@
@interface settingsReorderTable : UIViewController
@property(nonatomic, strong) UITableView *tableView;
@end
// Snack bar
@interface YTHUDMessage : NSObject
+ (id)messageWithText:(id)text;
- (void)setAction:(id)action;
@end
@interface GOOHUDMessageAction : NSObject
- (void)setTitle:(NSString *)title;
- (void)setHandler:(void (^)(id))handler;
@end
@interface GOOHUDManagerInternal : NSObject
- (void)showMessageMainThread:(id)message;
+ (id)sharedInstance;
@end