Search code examples
angulardartdart2js

Dart, conditional loading of Angular 2 packages/modules


Can output of dart2js (and angular2) be split into multiple packages and conditionally loaded during app runtime?

Similar to how RequireJS can do conditional loading of app parts/packages.

Example:

<button onClick="showAdminInterface()">ADMIN</button>

function showAdminInterface()
{
     require(['myApp/AdminPackage'], function(pkg){
         pkg.display();
     });
}

Solution

  • Dart supports lazy loading of libraries and Angular2 also allows to use this feature.

    For details see