1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| <!-- {"title": "Sticky left column", "category": "layouts", "complexity": "advanced"} -->
| <View style="display: flex;">
| <View style="padding: 0em 1em; background: #f1f1f1; margin-right: 1em; border-radius: 3px">
| <View style="position: sticky; top: 0; z-index: 10000;">
| <Labels name="label" toName="text">
| <Label value="Person" />
| <Label value="Organization" />
| </Labels>
| </View>
| </View>
|
| <View>
| <Text name="text" value="$text" />
| </View>
| </View>
|
|