Files
keyboard/keyBoard/Class/Login/VC/KBLoginSheetViewController.h
2025-11-03 20:02:11 +08:00

22 lines
374 B
Objective-C

//
// KBLoginSheetViewController.h
// keyBoard
//
// A lightweight bottom-sheet style login prompt.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface KBLoginSheetViewController : UIViewController
@property (nonatomic, copy, nullable) void (^onLoginSuccess)(void);
+ (void)presentIfNeededFrom:(UIViewController *)presenting;
@end
NS_ASSUME_NONNULL_END