mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
22 lines
578 B
Objective-C
22 lines
578 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <AsyncDisplayKit/ASLayoutController.h>
|
|
|
|
typedef NS_ENUM(NSUInteger, ASFlowLayoutDirection) {
|
|
ASFlowLayoutDirectionVertical,
|
|
ASFlowLayoutDirectionHorizontal,
|
|
};
|
|
|
|
/**
|
|
* The controller for flow layout.
|
|
*/
|
|
@interface ASFlowLayoutController : NSObject <ASLayoutController>
|
|
|
|
@property (nonatomic, assign) ASRangeTuningParameters tuningParameters;
|
|
|
|
@property (nonatomic, readonly, assign) ASFlowLayoutDirection layoutDirection;
|
|
|
|
- (instancetype)initWithScrollOption:(ASFlowLayoutDirection)layoutDirection;
|
|
|
|
@end
|