How to make View height expand based on the height of its siblings in a row?












1















I currently have a simple legend component that produces an output like so:



enter image description here



The problem is that I manually set the height for the blue rectangle to be as tall as the text. Is there any way I can tell that View to just expand naturally based on the height of the text instead of having to manually set some number as the height?



You can try out the Snack or check out the code:



import * as React from 'react';
import { Text, View, StyleSheet } from 'react-native';

class App extends React.Component {
render() {
return (
<View style={styles.container}>
<View style={styles.legend}>
<View style={styles.item}>
<View style={styles.shape} />
<View>
<Text>Food</Text>
<Text>25%</Text>
</View>
</View>
<View style={styles.item}>
<View style={styles.shape} />
<View>
<Text>Utilities</Text>
<Text>35%</Text>
</View>
</View>
<View style={styles.item}>
<View style={styles.shape} />
<View>
<Text>Misc.</Text>
<Text>40%</Text>
</View>
</View>
</View>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'white',
marginHorizontal: 50,
},
legend: {
width: '100%',
flexDirection: 'row',
justifyContent: 'space-between'
},
item: {
flexDirection: 'row',
alignItems: 'center'
},
shape: {
backgroundColor: 'blue',
width: 15,
height: 30, // I DONT WANT TO HAVE TO DO THIS
marginRight: 5
}
});

export default App;


Any help would be appreciated, thanks!










share|improve this question





























    1















    I currently have a simple legend component that produces an output like so:



    enter image description here



    The problem is that I manually set the height for the blue rectangle to be as tall as the text. Is there any way I can tell that View to just expand naturally based on the height of the text instead of having to manually set some number as the height?



    You can try out the Snack or check out the code:



    import * as React from 'react';
    import { Text, View, StyleSheet } from 'react-native';

    class App extends React.Component {
    render() {
    return (
    <View style={styles.container}>
    <View style={styles.legend}>
    <View style={styles.item}>
    <View style={styles.shape} />
    <View>
    <Text>Food</Text>
    <Text>25%</Text>
    </View>
    </View>
    <View style={styles.item}>
    <View style={styles.shape} />
    <View>
    <Text>Utilities</Text>
    <Text>35%</Text>
    </View>
    </View>
    <View style={styles.item}>
    <View style={styles.shape} />
    <View>
    <Text>Misc.</Text>
    <Text>40%</Text>
    </View>
    </View>
    </View>
    </View>
    );
    }
    }

    const styles = StyleSheet.create({
    container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: 'white',
    marginHorizontal: 50,
    },
    legend: {
    width: '100%',
    flexDirection: 'row',
    justifyContent: 'space-between'
    },
    item: {
    flexDirection: 'row',
    alignItems: 'center'
    },
    shape: {
    backgroundColor: 'blue',
    width: 15,
    height: 30, // I DONT WANT TO HAVE TO DO THIS
    marginRight: 5
    }
    });

    export default App;


    Any help would be appreciated, thanks!










    share|improve this question



























      1












      1








      1








      I currently have a simple legend component that produces an output like so:



      enter image description here



      The problem is that I manually set the height for the blue rectangle to be as tall as the text. Is there any way I can tell that View to just expand naturally based on the height of the text instead of having to manually set some number as the height?



      You can try out the Snack or check out the code:



      import * as React from 'react';
      import { Text, View, StyleSheet } from 'react-native';

      class App extends React.Component {
      render() {
      return (
      <View style={styles.container}>
      <View style={styles.legend}>
      <View style={styles.item}>
      <View style={styles.shape} />
      <View>
      <Text>Food</Text>
      <Text>25%</Text>
      </View>
      </View>
      <View style={styles.item}>
      <View style={styles.shape} />
      <View>
      <Text>Utilities</Text>
      <Text>35%</Text>
      </View>
      </View>
      <View style={styles.item}>
      <View style={styles.shape} />
      <View>
      <Text>Misc.</Text>
      <Text>40%</Text>
      </View>
      </View>
      </View>
      </View>
      );
      }
      }

      const styles = StyleSheet.create({
      container: {
      flex: 1,
      justifyContent: 'center',
      alignItems: 'center',
      backgroundColor: 'white',
      marginHorizontal: 50,
      },
      legend: {
      width: '100%',
      flexDirection: 'row',
      justifyContent: 'space-between'
      },
      item: {
      flexDirection: 'row',
      alignItems: 'center'
      },
      shape: {
      backgroundColor: 'blue',
      width: 15,
      height: 30, // I DONT WANT TO HAVE TO DO THIS
      marginRight: 5
      }
      });

      export default App;


      Any help would be appreciated, thanks!










      share|improve this question
















      I currently have a simple legend component that produces an output like so:



      enter image description here



      The problem is that I manually set the height for the blue rectangle to be as tall as the text. Is there any way I can tell that View to just expand naturally based on the height of the text instead of having to manually set some number as the height?



      You can try out the Snack or check out the code:



      import * as React from 'react';
      import { Text, View, StyleSheet } from 'react-native';

      class App extends React.Component {
      render() {
      return (
      <View style={styles.container}>
      <View style={styles.legend}>
      <View style={styles.item}>
      <View style={styles.shape} />
      <View>
      <Text>Food</Text>
      <Text>25%</Text>
      </View>
      </View>
      <View style={styles.item}>
      <View style={styles.shape} />
      <View>
      <Text>Utilities</Text>
      <Text>35%</Text>
      </View>
      </View>
      <View style={styles.item}>
      <View style={styles.shape} />
      <View>
      <Text>Misc.</Text>
      <Text>40%</Text>
      </View>
      </View>
      </View>
      </View>
      );
      }
      }

      const styles = StyleSheet.create({
      container: {
      flex: 1,
      justifyContent: 'center',
      alignItems: 'center',
      backgroundColor: 'white',
      marginHorizontal: 50,
      },
      legend: {
      width: '100%',
      flexDirection: 'row',
      justifyContent: 'space-between'
      },
      item: {
      flexDirection: 'row',
      alignItems: 'center'
      },
      shape: {
      backgroundColor: 'blue',
      width: 15,
      height: 30, // I DONT WANT TO HAVE TO DO THIS
      marginRight: 5
      }
      });

      export default App;


      Any help would be appreciated, thanks!







      react-native flexbox react-native-flexbox






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 2 at 17:53









      saadq

      10.1k103773




      10.1k103773










      asked Jan 2 at 17:33









      inhwrbpinhwrbp

      1377




      1377
























          2 Answers
          2






          active

          oldest

          votes


















          0














          You can use height: '100%' on the shape style, and all the shapes will have the max height of the text



          This is with a long text






          share|improve this answer































            0














            If i understand correctly, firstly you should wrap your each item with a view and after that you should add a second view with flexGrow.



            <View>
            <View style={{flexGrow: 1}}/>
            <View style={styles.item}>


            The first view helps you for changing the flexDirection to column and second view which has flexGrow helps you to push down your blue shape. And you should set shape height to 100%.



            shape: {
            backgroundColor: 'blue',
            width: 15,
            height: "100%", //here
            marginRight: 5,
            }


            Also i edited your snack code and save it. Link: https://snack.expo.io/HkZ3a5q-V






            share|improve this answer
























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54010710%2fhow-to-make-view-height-expand-based-on-the-height-of-its-siblings-in-a-row%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              You can use height: '100%' on the shape style, and all the shapes will have the max height of the text



              This is with a long text






              share|improve this answer




























                0














                You can use height: '100%' on the shape style, and all the shapes will have the max height of the text



                This is with a long text






                share|improve this answer


























                  0












                  0








                  0







                  You can use height: '100%' on the shape style, and all the shapes will have the max height of the text



                  This is with a long text






                  share|improve this answer













                  You can use height: '100%' on the shape style, and all the shapes will have the max height of the text



                  This is with a long text







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 2 at 19:19









                  Julian BonominiJulian Bonomini

                  262




                  262

























                      0














                      If i understand correctly, firstly you should wrap your each item with a view and after that you should add a second view with flexGrow.



                      <View>
                      <View style={{flexGrow: 1}}/>
                      <View style={styles.item}>


                      The first view helps you for changing the flexDirection to column and second view which has flexGrow helps you to push down your blue shape. And you should set shape height to 100%.



                      shape: {
                      backgroundColor: 'blue',
                      width: 15,
                      height: "100%", //here
                      marginRight: 5,
                      }


                      Also i edited your snack code and save it. Link: https://snack.expo.io/HkZ3a5q-V






                      share|improve this answer




























                        0














                        If i understand correctly, firstly you should wrap your each item with a view and after that you should add a second view with flexGrow.



                        <View>
                        <View style={{flexGrow: 1}}/>
                        <View style={styles.item}>


                        The first view helps you for changing the flexDirection to column and second view which has flexGrow helps you to push down your blue shape. And you should set shape height to 100%.



                        shape: {
                        backgroundColor: 'blue',
                        width: 15,
                        height: "100%", //here
                        marginRight: 5,
                        }


                        Also i edited your snack code and save it. Link: https://snack.expo.io/HkZ3a5q-V






                        share|improve this answer


























                          0












                          0








                          0







                          If i understand correctly, firstly you should wrap your each item with a view and after that you should add a second view with flexGrow.



                          <View>
                          <View style={{flexGrow: 1}}/>
                          <View style={styles.item}>


                          The first view helps you for changing the flexDirection to column and second view which has flexGrow helps you to push down your blue shape. And you should set shape height to 100%.



                          shape: {
                          backgroundColor: 'blue',
                          width: 15,
                          height: "100%", //here
                          marginRight: 5,
                          }


                          Also i edited your snack code and save it. Link: https://snack.expo.io/HkZ3a5q-V






                          share|improve this answer













                          If i understand correctly, firstly you should wrap your each item with a view and after that you should add a second view with flexGrow.



                          <View>
                          <View style={{flexGrow: 1}}/>
                          <View style={styles.item}>


                          The first view helps you for changing the flexDirection to column and second view which has flexGrow helps you to push down your blue shape. And you should set shape height to 100%.



                          shape: {
                          backgroundColor: 'blue',
                          width: 15,
                          height: "100%", //here
                          marginRight: 5,
                          }


                          Also i edited your snack code and save it. Link: https://snack.expo.io/HkZ3a5q-V







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jan 2 at 20:38









                          sdkcysdkcy

                          1,111512




                          1,111512






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54010710%2fhow-to-make-view-height-expand-based-on-the-height-of-its-siblings-in-a-row%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              MongoDB - Not Authorized To Execute Command

                              in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                              How to fix TextFormField cause rebuild widget in Flutter