This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/iOS/Pod/Classes/Shader/DoricGroupNode.h

26 lines
571 B
C
Raw Normal View History

2019-07-30 15:20:11 +08:00
//
// DoricGroupNode.h
// Doric
//
// Created by pengfei.zhou on 2019/7/30.
//
#import "DoricViewNode.h"
NS_ASSUME_NONNULL_BEGIN
2019-07-31 17:43:26 +08:00
@interface DoricGroupNode <V:UIView *,P:LayoutParams *>: DoricViewNode<V>
2019-07-30 21:05:27 +08:00
@property (nonatomic,strong) NSMutableDictionary *children;
2019-07-31 14:18:20 +08:00
@property (nonatomic,strong) NSMutableArray *indexedChildren;
@property (nonatomic) CGFloat desiredWidth;
@property (nonatomic) CGFloat desiredHeight;
2019-07-30 21:05:27 +08:00
2019-07-30 15:20:11 +08:00
- (void)blendChild:(DoricViewNode *)child layoutConfig:(NSDictionary *)layoutconfig;
2019-07-30 21:05:27 +08:00
2019-07-31 17:43:26 +08:00
- (P)generateDefaultLayoutParams;
2019-07-30 15:20:11 +08:00
@end
NS_ASSUME_NONNULL_END