destination_lock 0.0.2+2 destination_lock: ^0.0.2+2 copied to clipboard
Lock/unlock destinations that your application can reach
example/destination_lock_example.dart
import 'package:destination_lock/destination_lock.dart';
import 'package:destination_lock/tree/models/regular_route.dart';
import 'package:destination_lock/tree/models/root_route.dart';
List<String> _blockedRoutes = [];
DestinationLock routeTree = DestinationLock(
rootRoute: RootRoute(
widget: null,
),
regularRoutes: [
RegularRoute(
path: '/c',
widget: null,
children: [
RegularRoute(
path: '/c/a',
widget: null,
),
RegularRoute(
path: '/c/b',
widget: null,
),
],
),
RegularRoute(
path: '/d',
widget: null,
),
],
blockedRoutes: _blockedRoutes,
);
final map = routeTree.convertToTreeStructure();