-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple_service.dart
61 lines (42 loc) · 1.4 KB
/
simple_service.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
/*
* 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 the StackAsAService in the container
container.register(StackAsAService());
// Get the registered service from the container
var stack = container.get<StackAsAService>();
// Modify the stack
print(stack.length); // Outputs 0
stack.add("Hello");
stack.add("World");
print(stack.length); // Outputs 2
print(stack.entries); // Outputs [Hello, World]
// Retrieve the same service again from the container
var anotherStack = container.get<StackAsAService>();
print(anotherStack.length); // Outputs 2
print(anotherStack.entries); // Outputs [Hello, World]
// Modify it...
anotherStack.remove('World');
// And the first variable is also modified
print(stack.length); // Outputs 2
print(stack.entries); // Outputs [Hello]
}
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;
}