craftd_widget 1.0.2 copy "craftd_widget: ^1.0.2" to clipboard
craftd_widget: ^1.0.2 copied to clipboard

A Server Driven UI library provided by CodandoTV.

🧑‍💻 How to use? #

You can use the existing components or create your own components, more details you can check in our documentation web site.

Existing Components #

You can check the existing components CraftD already has here.

Create your own component #

  • Create your ComponentPropertyClass with properties that you need
class ButtonProperties {
  const ButtonProperties({
      required this.text,
    ... place your construtor properties
  });

  final String text;
   ... place your properties
}
  • Add your Component json object in Dymanic.json
{
    "key": "CraftDBbutton",
    "value": {
         "text": "Knife",
     ... place your properties
     }
 }
3
likes
120
points
163
downloads

Publisher

verified publishercodandotv.com

Weekly Downloads

A Server Driven UI library provided by CodandoTV.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

dio, equatable, flutter, material

More

Packages that depend on craftd_widget