├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcuserdata │ └── namkennic.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Example ├── FrameLayoutKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── FrameLayoutKit-Example.xcscheme ├── FrameLayoutKit.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── namkennic.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ ├── WorkspaceSettings.xcsettings │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── FrameLayoutKit │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CardView.swift │ ├── FrameLayoutKit_Example.entitlements │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── collapse_24x24.imageset │ │ │ ├── Contents.json │ │ │ ├── collapse_24x24@1x.png │ │ │ ├── collapse_24x24@2x.png │ │ │ └── collapse_24x24@3x.png │ │ ├── earth_48x48.imageset │ │ │ ├── Contents.json │ │ │ ├── earth_48x48@1x.png │ │ │ ├── earth_48x48@2x.png │ │ │ └── earth_48x48@3x.png │ │ ├── expand_24x24.imageset │ │ │ ├── Contents.json │ │ │ ├── expand_24x24@1x.png │ │ │ ├── expand_24x24@2x.png │ │ │ └── expand_24x24@3x.png │ │ └── rocket_32x32.imageset │ │ │ ├── Contents.json │ │ │ ├── rocket_32x32@1x.png │ │ │ ├── rocket_32x32@2x.png │ │ │ └── rocket_32x32@3x.png │ ├── Info.plist │ ├── NumberPadView.swift │ ├── TagListView.swift │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── FrameLayoutKit.podspec ├── FrameLayoutKit └── Classes │ ├── .gitkeep │ ├── DoubleFrameLayout.swift │ ├── Extensions │ ├── DoubleFrameLayout+Chainable.swift │ ├── FlowFrameLayout+Chainable.swift │ ├── FrameLayout+Chainable.swift │ ├── FrameLayout+Extension.swift │ ├── GridFrameLayout+Chainable.swift │ ├── ScrollStackView+Chainable.swift │ ├── StackFrameLayout+Chainable.swift │ └── StackFrameLayout+DSL.swift │ ├── FLSkeletonView.swift │ ├── FLView.swift │ ├── FlowFrameLayout.swift │ ├── FrameLayout.swift │ ├── GridFrameLayout.swift │ ├── ScrollStackView.swift │ └── StackFrameLayout.swift ├── LICENSE ├── Package.swift ├── README.md ├── _Pods.xcodeproj ├── images ├── FrameLayoutKit.png ├── banner.jpg ├── bechmark.png ├── example_1.png ├── example_2.png ├── example_3.png ├── frameLayoutSyntax.png ├── helloWorld.png └── no_constraint.png └── llms.txt /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcuserdata/namkennic.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/.swiftpm/xcode/xcuserdata/namkennic.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/FrameLayoutKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/FrameLayoutKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/FrameLayoutKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/FrameLayoutKit.xcodeproj/xcshareddata/xcschemes/FrameLayoutKit-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit.xcodeproj/xcshareddata/xcschemes/FrameLayoutKit-Example.xcscheme -------------------------------------------------------------------------------- /Example/FrameLayoutKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/FrameLayoutKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/FrameLayoutKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/FrameLayoutKit.xcworkspace/xcuserdata/namkennic.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit.xcworkspace/xcuserdata/namkennic.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/FrameLayoutKit.xcworkspace/xcuserdata/namkennic.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit.xcworkspace/xcuserdata/namkennic.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/FrameLayoutKit.xcworkspace/xcuserdata/namkennic.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit.xcworkspace/xcuserdata/namkennic.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/FrameLayoutKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/AppDelegate.swift -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/FrameLayoutKit/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/CardView.swift -------------------------------------------------------------------------------- /Example/FrameLayoutKit/FrameLayoutKit_Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/FrameLayoutKit_Example.entitlements -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/collapse_24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/collapse_24x24.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/collapse_24x24.imageset/collapse_24x24@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/collapse_24x24.imageset/collapse_24x24@1x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/collapse_24x24.imageset/collapse_24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/collapse_24x24.imageset/collapse_24x24@2x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/collapse_24x24.imageset/collapse_24x24@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/collapse_24x24.imageset/collapse_24x24@3x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/earth_48x48.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/earth_48x48.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/earth_48x48.imageset/earth_48x48@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/earth_48x48.imageset/earth_48x48@1x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/earth_48x48.imageset/earth_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/earth_48x48.imageset/earth_48x48@2x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/earth_48x48.imageset/earth_48x48@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/earth_48x48.imageset/earth_48x48@3x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/expand_24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/expand_24x24.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/expand_24x24.imageset/expand_24x24@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/expand_24x24.imageset/expand_24x24@1x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/expand_24x24.imageset/expand_24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/expand_24x24.imageset/expand_24x24@2x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/expand_24x24.imageset/expand_24x24@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/expand_24x24.imageset/expand_24x24@3x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/rocket_32x32.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/rocket_32x32.imageset/Contents.json -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/rocket_32x32.imageset/rocket_32x32@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/rocket_32x32.imageset/rocket_32x32@1x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/rocket_32x32.imageset/rocket_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/rocket_32x32.imageset/rocket_32x32@2x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Images.xcassets/rocket_32x32.imageset/rocket_32x32@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Images.xcassets/rocket_32x32.imageset/rocket_32x32@3x.png -------------------------------------------------------------------------------- /Example/FrameLayoutKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/Info.plist -------------------------------------------------------------------------------- /Example/FrameLayoutKit/NumberPadView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/NumberPadView.swift -------------------------------------------------------------------------------- /Example/FrameLayoutKit/TagListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/TagListView.swift -------------------------------------------------------------------------------- /Example/FrameLayoutKit/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/FrameLayoutKit/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /FrameLayoutKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit.podspec -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/DoubleFrameLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/DoubleFrameLayout.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/Extensions/DoubleFrameLayout+Chainable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/Extensions/DoubleFrameLayout+Chainable.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/Extensions/FlowFrameLayout+Chainable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/Extensions/FlowFrameLayout+Chainable.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/Extensions/FrameLayout+Chainable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/Extensions/FrameLayout+Chainable.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/Extensions/FrameLayout+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/Extensions/FrameLayout+Extension.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/Extensions/GridFrameLayout+Chainable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/Extensions/GridFrameLayout+Chainable.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/Extensions/ScrollStackView+Chainable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/Extensions/ScrollStackView+Chainable.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/Extensions/StackFrameLayout+Chainable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/Extensions/StackFrameLayout+Chainable.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/Extensions/StackFrameLayout+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/Extensions/StackFrameLayout+DSL.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/FLSkeletonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/FLSkeletonView.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/FLView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/FLView.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/FlowFrameLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/FlowFrameLayout.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/FrameLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/FrameLayout.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/GridFrameLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/GridFrameLayout.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/ScrollStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/ScrollStackView.swift -------------------------------------------------------------------------------- /FrameLayoutKit/Classes/StackFrameLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/FrameLayoutKit/Classes/StackFrameLayout.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /images/FrameLayoutKit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/images/FrameLayoutKit.png -------------------------------------------------------------------------------- /images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/images/banner.jpg -------------------------------------------------------------------------------- /images/bechmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/images/bechmark.png -------------------------------------------------------------------------------- /images/example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/images/example_1.png -------------------------------------------------------------------------------- /images/example_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/images/example_2.png -------------------------------------------------------------------------------- /images/example_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/images/example_3.png -------------------------------------------------------------------------------- /images/frameLayoutSyntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/images/frameLayoutSyntax.png -------------------------------------------------------------------------------- /images/helloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/images/helloWorld.png -------------------------------------------------------------------------------- /images/no_constraint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/images/no_constraint.png -------------------------------------------------------------------------------- /llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/FrameLayoutKit/HEAD/llms.txt --------------------------------------------------------------------------------