08-19-2020 18:09
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

Base Runner
27
0
8
08-19-2020 18:09
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
If I place <AdditiveList> following another component inside a <Section>, the first item of the additive list would not align with the others.
function settingsComponent(props) {
return (
<Page>
<Section
title="Section Title"
description="Section Description">
<Text>Text</Text>
<AdditiveList
settingsKey="additive-list-2"
/>
</Section>
</Page>
);
}
registerSettingsPage(settingsComponent);
If I place <AdditiveList> alone inside a <Section> it works well.
function settingsComponent(props) {
return (
<Page>
<Text>Text</Text>
<Section
title="Section Title"
description="Section Description">
<AdditiveList
settingsKey="additive-list-2"
/>
</Section>
</Page>
);
}
registerSettingsPage(settingsComponent);
My device is Nokia 7.2, Android 10, updated lately. Fitbit App last updated 3 August 2020.
Please fix this problem. Thanks.

0 REPLIES 0
