flexboxobjc_deprecated icon indicating copy to clipboard operation
flexboxobjc_deprecated copied to clipboard

A simple UIKit extension to wrap Flexbox layouts.

Results 9 flexboxobjc_deprecated issues
Sort by recently updated
recently updated
newest added

If i have uitableview cell which contains a view that has many items using flex layout. how can I get the cell height before the item was being drawn on...

hi alexdrone, did you run your demo in iphone 6s plus? when i run the demo with CellDemoTableViewController, and then scroll to top or to bottom. iphone both cpu and...

I want to self-size a CollectionView cell with Flexbox, because I've experienced both memory and performance issues when scrolling with my existing implementation, which uses Auto-layout declared in IB. There's...

Will you please add a sample demo project implementing flexbox! That would be helpful.

In The FLEXBoxNode.m - (void)setMinDimensions:(CGSize)size { _minDimensions = size; // _node->style.minDimensions[CSS_WIDTH] = size.width; // _node->style.minDimensions[CSS_HEIGHT] = size.height; } - (void)setMaxDimensions:(CGSize)size { _maxDimensions = size; // _node->style.maxDimensions[CSS_WIDTH] = size.width; // _node->style.maxDimensions[CSS_HEIGHT]...

1. FlexContainer should not mean flexItem's flex = 1 when a view play…s both the role as container and flexitem 2. enable flexed minDimension and maxDimension

Hi, alexdrone I recently made a Demo ``` Objective-C FLEXBOXContainerView *contaner = [FLEXBOXContainerView new]; contaner.frame = self.view.bounds; contaner.flexDirection = FLEXBOXFlexDirectionColumn; contaner.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth; [self.view addSubview:contaner]; FLEXBOXContainerView *topContainer =...