File tree Expand file tree Collapse file tree 1 file changed +44
-2
lines changed Expand file tree Collapse file tree 1 file changed +44
-2
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,50 @@ child elements directly or indirectly restrain each other. Each constraint shoul
2424where the child elements are located. Although constraints can only be one-way, you can still better
2525handle 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
You can’t perform that action at this time.
0 commit comments