jugger.dart icon indicating copy to clipboard operation
jugger.dart copied to clipboard

Dependency Injection for Flutter and Dart

Results 5 jugger.dart issues
Sort by recently updated
recently updated
newest added

Hi there. Wondering if there's a way to pre-resolve a future. e.g. ``` @provides static Future providePackageInfo() => PackageInfo.fromPlatform(); ``` Then have a dependency that uses PackageInfo directly instead of...

**Describe the error:** ```dart late final _i2.IProvider _intProvider = _i2.SingletonProvider(() => _i1.ChildModule.provideInt(_parent._iParentComponentProvider.get())); ^ ``` **Code for reproduce:** ```dart import 'package:jugger/jugger.dart'; @Component(modules: [ParentModule]) abstract class IParentComponent { String get string; @subcomponentFactory...

Invalid argument(s): Content produced diagnostics when parsed: EXPECTED_TOKEN: Expected to find ';'. - 38:43 MISSING_FUNCTION_BODY: A function body must be provided. - 43:80 EXPECTED_TOKEN: Expected to find ';'. - 8:42...