Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

<AdditiveList> first item does not align if <AdditiveList> follows other component in a <Section>

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);
  

 Screenshot from 2020-08-20 10-51-50.pngScreenshot from 2020-08-20 10-52-06.png               

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);
  

 

Screenshot from 2020-08-20 10-59-20.pngScreenshot from 2020-08-20 10-59-40.png

My device is Nokia 7.2, Android 10, updated lately. Fitbit App last updated 3 August 2020.

 

Please fix this problem. Thanks.

Best Answer
0 Votes
0 REPLIES 0