Duit is a server side UI framework for Flutter. It is used for creating widgets and server-side state management.
The framework consists of several parts:
- Flutter package
- Go backend adapter
- Node JS backend adapter (this repository)
The framework ensures that the layout model is received from the server, interacts with the backend via the Action API, and embeds custom components into the widget hierarchy processing pipeline. Duit is flexible and extensible, which allows it to create rich UI dynamically.
- Structured mappings out of the box. UI property structures and constants.
- A simple contract for building a hierarchy of widgets.
- Ready-made widget functions
- Easily create custom actions and their dependencies
- Create widget composition and build json from it
function Example() {
//create UIBuilder instance
const builder = DuitView.builder();
//create child elements tree
const text = new TextUiElement({data: "Hello World"})
//create view root and assing child/children to him
builder.createRootOfExactType(DuitElementType.column, {}).addChild(sizedBoxWithCentredText)
//return json string
return builder.build();
}
- Run function and return result to client side
router.get("/layout1", function (req, res) {
const layout = Example();
res.status(200).send(layout);
});
- Widget library expansion
- Troubleshooting, updating documentation
MIT