// // KBKeyboardLegacyBuilder.h // CustomKeyboard // // Legacy layout builder (non-config layout). // #import @class KBKey; @class KBBackspaceLongPressHandler; @class UIView; NS_ASSUME_NONNULL_BEGIN @interface KBKeyboardLegacyBuilder : NSObject - (void)buildRow:(UIView *)row withKeys:(NSArray *)keys edgeSpacerMultiplier:(CGFloat)edgeSpacerMultiplier shiftOn:(BOOL)shiftOn backspaceHandler:(KBBackspaceLongPressHandler *)backspaceHandler target:(id)target action:(SEL)action; @end NS_ASSUME_NONNULL_END