-
Notifications
You must be signed in to change notification settings - Fork 1
/
flutter-kotlin.dot
63 lines (53 loc) · 1.09 KB
/
flutter-kotlin.dot
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
digraph A {
graph [label="Flutter Basic"]
"Flutter" -> "iOS App"
"Flutter" -> "Android App"
}
digraph Aalt {
graph [label="Flutter as Component"]
"iOS Logic" -> "iOS App"
"Flutter" -> "iOS UI" -> "iOS App"
"Flutter" -> "Android UI" -> "Android App"
"Android Logic" -> "Android App"
}
digraph B {
graph [label="Kotlin Basic"]
"Kotlin Logic" -> "iOS App"
"iOS UI" -> "iOS App"
"Kotlin Logic" -> "Android App"
"Android UI" -> "Android App"
}
digraph C {
graph[label="Possible Coupling"]
f [label="Flutter UI"]
f -> fios
fios [label="iOS\nUI\nComponent"]
f -> fand
fand [label="Android\nUI\nComponent"]
k [label="Kotlin Logic"]
k -> kios
kios [label="iOS\nLogic\nComponent"]
k -> kand
kand [label="Android\nLogic\nComponent"]
fios -> cios
kios -> cios
cios [label="Combined iOS App"]
fand -> cand
kand -> cand
cand [label="Combined Android App"]
}
digraph Calt {
graph[label="Possible Coupling"]
f [label="Flutter"]
f -> fios
fios [label="iOS UI"]
f -> fand
fand [label="Android UI"]
k [label="Kotlin Logic"]
fios -> cios
k -> cios
cios [label="iOS App"]
fand -> cand
k -> cand
cand [label="Android App"]
}