-
Notifications
You must be signed in to change notification settings - Fork 0
/
service_with_dependencies.dart
68 lines (50 loc) · 1.67 KB
/
service_with_dependencies.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* This file is part of the flutter_catalyst package.
*
* Copyright 2020 - present by Julian Finkler <[email protected]>
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code.
*/
import 'package:flutter_catalyst/flutter_catalyst.dart';
main() {
var container = DependencyContainer();
// Register a service which requires another dependencies
// The first parameter is a factory which is used to create the service
// The factory retrieves the instances of the required dependencies
//
// The second parameter is a list of the types of the required dependencies
container.registerWithDependencies<StackPrinter>((List<dynamic> deps) {
var stackAsAService = deps[0];
return StackPrinter(stackAsAService);
}, [StackAsAService]);
// Register the StackAsAService in the container
container.register(StackAsAService());
print(container.has<StackPrinter>()); // false
container.wire(); // Wire the services
print(container.has<StackPrinter>()); // true
// Get the StackAsAService from the container
var stack = container.get<StackAsAService>();
stack.add("Hello");
stack.add("World");
var printer = container.get<StackPrinter>();
printer.printStack(); // [Hello, World]
}
class StackAsAService {
List<String> _entries = <String>[];
void add(String entry) {
_entries.add(entry);
}
void remove(String entry) {
_entries.removeWhere((e) => e == entry);
}
List<String> get entries => _entries;
int get length => _entries.length;
}
class StackPrinter {
final StackAsAService stack;
StackPrinter(this.stack);
printStack() {
print(stack.entries);
}
}