goto function

void goto(
  1. ComponentContext ctx,
  2. String path
)

Implementation

void goto(ComponentContext ctx, String path) {
  final route = ctx.globalState<String>('route');
  route.set((state) => path);
  window.history.pushState(null, '', '#$path');
}