dengyin2000 / dynamic_widget

A Backend-Driven UI toolkit, build your dynamic UI with json, and the json format is very similar with flutter widget code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Goto Page on click event

socialpixe opened this issue · comments

Hello, i am using click event, but unable to understand how can i open specific page by check route params ?

route://userDetails?userid=123

Want to goto user details page and read 123

You should create a click listener for handling jumping pages.

`class DefaultClickListener implements ClickListener{
@OverRide
void onClicked(String event) {
print("Receive click event: " + event);
}

}`