Open shubhammemane1 opened 1 year ago
@shubhammemane1 you can add a "not found page" to your BeamerDelegate like this
final routerDelegate = BeamerDelegate(
notFoundPage: const BeamPage(
key: ValueKey("NotFound"),
title: "NotFound",
child: Placeholder(),
),
locationBuilder: ...
);
i have added list of pages in BeamerDelegate but what if i not added page or user is changed trough directly URL i should redirect to not found page
how to add not found page in this