Apply clang-format update fixes

Reviewed By: igorsugak

Differential Revision: D25861849

fbshipit-source-id: 840dc1061e557717c7f9ffcccbc09c24b96b78e0
This commit is contained in:
Andres Suarez
2021-01-10 10:03:53 -08:00
committed by Facebook GitHub Bot
parent 98b74c4f49
commit 731e39445f
3 changed files with 36 additions and 31 deletions

View File

@@ -57,21 +57,24 @@ static CKComponent* componentForModel(
id<NSObject> context) {
return CK::BackgroundLayoutComponentBuilder()
.component(CK::FlexboxComponentBuilder()
.child({.component = CK::ButtonComponentBuilder()
.action(nil)
.title(@"Purple")
.titleColor(UIColor.purpleColor)
.build()})
.child({.component = CK::ButtonComponentBuilder()
.action(nil)
.title(@"Brown")
.titleColor(UIColor.brownColor)
.build()})
.child({.component = CK::ButtonComponentBuilder()
.action(nil)
.title(@"Cyan")
.titleColor(UIColor.cyanColor)
.build()})
.child(
{.component = CK::ButtonComponentBuilder()
.action(nil)
.title(@"Purple")
.titleColor(UIColor.purpleColor)
.build()})
.child(
{.component = CK::ButtonComponentBuilder()
.action(nil)
.title(@"Brown")
.titleColor(UIColor.brownColor)
.build()})
.child(
{.component = CK::ButtonComponentBuilder()
.action(nil)
.title(@"Cyan")
.titleColor(UIColor.cyanColor)
.build()})
.build())
.background(CK::ImageComponentBuilder()
.image([UIImage imageNamed:@"sonarpattern"])