Hello,
Dialog component is adding the “line separators” when used inside section (this “extended” line separator on provided image. On code example I could take it out of the section, but when there’s loads of nested components it becomes harder and creates non-necessary code complexity. Is it possible to avoid this behaviour?
Code example where issue is visible:
<Screen name="Test" title="Test">
<ScrollView>
<Section title="Test">
<Text variant="body">Line1</Text>
<Text variant="body">Line1</Text>
<Dialog
title="Test"
actionText="Action"
onAction={() => {}}
isVisible={false}
/>
<Dialog
title="Test"
actionText="Action"
onAction={() => {}}
isVisible={false}
/>
<Dialog
title="Test"
actionText="Action"
onAction={() => {}}
isVisible={false}
/>
<Dialog
title="Test"
actionText="Action"
onAction={() => {}}
isVisible={false}
/>
<Text variant="body">Line1</Text>
</Section>
</ScrollView>
</Screen>