Files
keyboard/keyBoard/Class/Login/VC/KBLoginSheetViewController.h
2025-10-30 20:23:34 +08:00

24 lines
513 B
Objective-C

//
// KBLoginSheetViewController.h
// keyBoard
//
// A lightweight bottom-sheet style login prompt.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface KBLoginSheetViewController : UIViewController
/// Called when the login finished successfully; sheet will dismiss itself as well.
@property (nonatomic, copy, nullable) void (^onLoginSuccess)(void);
/// Present the sheet from a top most view controller.
+ (void)presentIfNeededFrom:(UIViewController *)presenting;
@end
NS_ASSUME_NONNULL_END