Bin
2025-12-17 1442f92732d7c5311a627a7ba3aaa0bb8ffc539f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!-- {"title": "Long text with scrollbar", "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 style="height: 300px; overflow: auto;">
    <Text name="text" value="$longText" />
  </View>
</View>