Browse Source

neon: make route required for AppImplementation

pull/466/head
Nikolas Rimikis 1 year ago
parent
commit
6e2e82c8bf
No known key found for this signature in database
GPG Key ID: 85ED1DE9786A4FF2
  1. 2
      packages/neon/neon/lib/src/models/app_implementation.dart

2
packages/neon/neon/lib/src/models/app_implementation.dart

@ -82,7 +82,7 @@ abstract class AppImplementation<T extends Bloc, R extends NextcloudAppOptions>
///
/// All pages of the app must be specified as subroutes.
/// If this is not [GoRoute] an inital route name must be specified by overriding [initialRouteName].
RouteBase get route => throw UnimplementedError();
RouteBase get route;
/// Name of the initial route for this app.
///

Loading…
Cancel
Save