Skip to content

Commit d09f8b6

Browse files
authored
Update README.md
1 parent 9d4d041 commit d09f8b6

File tree

1 file changed

+44
-2
lines changed

1 file changed

+44
-2
lines changed

README.md

Lines changed: 44 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,50 @@ child elements directly or indirectly restrain each other. Each constraint shoul
2424
where the child elements are located. Although constraints can only be one-way, you can still better
2525
handle things that were previously (Android ConstraintLayout) two-way constraints, such as chains.
2626

27-
Anyone who sends you a harassing message, you can send him Flutter code and use nested hell to
28-
insult him.
27+
Anyone who sends you a harassing message, you can send him Flutter code and use 'nested hell' to
28+
insult him:
29+
```dart
30+
class NestedHell extends StatelessWidget {
31+
@override
32+
Widget build(BuildContext context) {
33+
return S(
34+
child: U(
35+
child: N(
36+
child: O(
37+
child: F(
38+
child: B(
39+
child: E(
40+
child: A(
41+
child: C(
42+
child: H(
43+
child: F(
44+
child: U(
45+
child: C(
46+
child: K(
47+
child: Y(
48+
child: O(
49+
child: U(
50+
child: Text('ooooooooo'),
51+
),
52+
),
53+
),
54+
),
55+
),
56+
),
57+
),
58+
),
59+
),
60+
),
61+
),
62+
),
63+
),
64+
),
65+
),
66+
),
67+
);
68+
}
69+
}
70+
```
2971

3072
# Feature
3173

0 commit comments

Comments
 (0)