UIComponent icon indicating copy to clipboard operation
UIComponent copied to clipboard

A modern, declarative approach to building user interfaces with UIKit.

Results 14 UIComponent issues
Sort by recently updated
recently updated
newest added

Example **Rows:** https://user-images.githubusercontent.com/11381801/161934057-8a5a36a6-3274-42b7-a107-501e25184d4e.mp4 **Columns:** https://user-images.githubusercontent.com/11381801/161937996-e095460c-88c7-4dc8-9d0f-7ae0d03e385f.mp4 More info: [exyte/Grid](https://github.com/exyte/Grid)

If the concept of state binding is added to the data, I think this can be better This is a great binding design, I think it will help you reference:...

Is this component compatible with IOS 11

Just like `UITableViewCell`

Consider compatibility with macOS?

Hope have a sample to implement drag and drop.

I switched the language to ar and adjusted the card demo, and found that the rtl layout is not supported. Is there any plan to support it? --- ```swift //...

```swift VStack(justifyContent: .center, alignItems: .center) { ViewComponent(view: UITextField()) .placeholder("input") .text(self.viewModel.image) .font(.systemFont(ofSize: 16)) .textColor(.blue) .size(width: .fill) .inset(5) .update { $0.layer.borderColor = UIColor.black.cgColor $0.layer.borderWidth = 1 $0.layer.cornerRadius = 6 // $0.font =...