How to get 2 react native in the same line?












-1















I am trying to get an image viewer to work with my gallery, The library I use https://github.com/ascoders/react-native-image-viewer gives option to render a react element in the header. I am using this following element in the place of header



<View styles={modalStyles.header}>
<View onPress={props.closeModal} style={modalStyles.leftHeader}>
<Icon name="close" size={20} color="#fff"></Icon>
</View>

<View onPress={() => props.startDownload(props.getShowingImage())} style={modalStyles.rightHeader}>
<Icon name="download" size={30} color="#fff"></Icon>
</View>

</View>


and here is my styles



const modalStyles = StyleSheet.create({
header: {
flex: 1,
flexDirection: 'row',
flexWrap: 'wrap',
justifyContent: 'space-between',
backgroundColor: "red",
},
leftHeader: {
marginLeft: 20,
padding: 10,
alignSelf: 'flex-start',
backgroundColor: "red",
},
rightHeader: {
marginRight: 20,
padding: 10,
alignSelf: 'flex-end',
backgroundColor: "red",
},
})


and here is how the modal looks like
enter image description here










share|improve this question


















  • 1





    Use style instead of styles in the parent view.

    – Anurag Chutani
    Nov 23 '18 at 5:32











  • @AnuragChutani thats silly of me. Thanks for pointing it.

    – Kireeti K
    Nov 23 '18 at 7:08
















-1















I am trying to get an image viewer to work with my gallery, The library I use https://github.com/ascoders/react-native-image-viewer gives option to render a react element in the header. I am using this following element in the place of header



<View styles={modalStyles.header}>
<View onPress={props.closeModal} style={modalStyles.leftHeader}>
<Icon name="close" size={20} color="#fff"></Icon>
</View>

<View onPress={() => props.startDownload(props.getShowingImage())} style={modalStyles.rightHeader}>
<Icon name="download" size={30} color="#fff"></Icon>
</View>

</View>


and here is my styles



const modalStyles = StyleSheet.create({
header: {
flex: 1,
flexDirection: 'row',
flexWrap: 'wrap',
justifyContent: 'space-between',
backgroundColor: "red",
},
leftHeader: {
marginLeft: 20,
padding: 10,
alignSelf: 'flex-start',
backgroundColor: "red",
},
rightHeader: {
marginRight: 20,
padding: 10,
alignSelf: 'flex-end',
backgroundColor: "red",
},
})


and here is how the modal looks like
enter image description here










share|improve this question


















  • 1





    Use style instead of styles in the parent view.

    – Anurag Chutani
    Nov 23 '18 at 5:32











  • @AnuragChutani thats silly of me. Thanks for pointing it.

    – Kireeti K
    Nov 23 '18 at 7:08














-1












-1








-1








I am trying to get an image viewer to work with my gallery, The library I use https://github.com/ascoders/react-native-image-viewer gives option to render a react element in the header. I am using this following element in the place of header



<View styles={modalStyles.header}>
<View onPress={props.closeModal} style={modalStyles.leftHeader}>
<Icon name="close" size={20} color="#fff"></Icon>
</View>

<View onPress={() => props.startDownload(props.getShowingImage())} style={modalStyles.rightHeader}>
<Icon name="download" size={30} color="#fff"></Icon>
</View>

</View>


and here is my styles



const modalStyles = StyleSheet.create({
header: {
flex: 1,
flexDirection: 'row',
flexWrap: 'wrap',
justifyContent: 'space-between',
backgroundColor: "red",
},
leftHeader: {
marginLeft: 20,
padding: 10,
alignSelf: 'flex-start',
backgroundColor: "red",
},
rightHeader: {
marginRight: 20,
padding: 10,
alignSelf: 'flex-end',
backgroundColor: "red",
},
})


and here is how the modal looks like
enter image description here










share|improve this question














I am trying to get an image viewer to work with my gallery, The library I use https://github.com/ascoders/react-native-image-viewer gives option to render a react element in the header. I am using this following element in the place of header



<View styles={modalStyles.header}>
<View onPress={props.closeModal} style={modalStyles.leftHeader}>
<Icon name="close" size={20} color="#fff"></Icon>
</View>

<View onPress={() => props.startDownload(props.getShowingImage())} style={modalStyles.rightHeader}>
<Icon name="download" size={30} color="#fff"></Icon>
</View>

</View>


and here is my styles



const modalStyles = StyleSheet.create({
header: {
flex: 1,
flexDirection: 'row',
flexWrap: 'wrap',
justifyContent: 'space-between',
backgroundColor: "red",
},
leftHeader: {
marginLeft: 20,
padding: 10,
alignSelf: 'flex-start',
backgroundColor: "red",
},
rightHeader: {
marginRight: 20,
padding: 10,
alignSelf: 'flex-end',
backgroundColor: "red",
},
})


and here is how the modal looks like
enter image description here







reactjs react-native flexbox






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 23 '18 at 4:46









Kireeti KKireeti K

339211




339211








  • 1





    Use style instead of styles in the parent view.

    – Anurag Chutani
    Nov 23 '18 at 5:32











  • @AnuragChutani thats silly of me. Thanks for pointing it.

    – Kireeti K
    Nov 23 '18 at 7:08














  • 1





    Use style instead of styles in the parent view.

    – Anurag Chutani
    Nov 23 '18 at 5:32











  • @AnuragChutani thats silly of me. Thanks for pointing it.

    – Kireeti K
    Nov 23 '18 at 7:08








1




1





Use style instead of styles in the parent view.

– Anurag Chutani
Nov 23 '18 at 5:32





Use style instead of styles in the parent view.

– Anurag Chutani
Nov 23 '18 at 5:32













@AnuragChutani thats silly of me. Thanks for pointing it.

– Kireeti K
Nov 23 '18 at 7:08





@AnuragChutani thats silly of me. Thanks for pointing it.

– Kireeti K
Nov 23 '18 at 7:08












1 Answer
1






active

oldest

votes


















1














This is how i get content inline one at left and one at right. Also you have typo in your code .. rename style with styles



 <View style={[{flexDirection:'row', alignItems:'center'}]}>
<View style={[{flex:1,flexDirection:'row'}]}>
//... left content
</View>
<View style={[{justifyContent:'space-evenly', marginVertical:10}]}>
// .... right content
</View>
</View>





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%2f53440774%2fhow-to-get-2-react-native-view-in-the-same-line%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    This is how i get content inline one at left and one at right. Also you have typo in your code .. rename style with styles



     <View style={[{flexDirection:'row', alignItems:'center'}]}>
    <View style={[{flex:1,flexDirection:'row'}]}>
    //... left content
    </View>
    <View style={[{justifyContent:'space-evenly', marginVertical:10}]}>
    // .... right content
    </View>
    </View>





    share|improve this answer




























      1














      This is how i get content inline one at left and one at right. Also you have typo in your code .. rename style with styles



       <View style={[{flexDirection:'row', alignItems:'center'}]}>
      <View style={[{flex:1,flexDirection:'row'}]}>
      //... left content
      </View>
      <View style={[{justifyContent:'space-evenly', marginVertical:10}]}>
      // .... right content
      </View>
      </View>





      share|improve this answer


























        1












        1








        1







        This is how i get content inline one at left and one at right. Also you have typo in your code .. rename style with styles



         <View style={[{flexDirection:'row', alignItems:'center'}]}>
        <View style={[{flex:1,flexDirection:'row'}]}>
        //... left content
        </View>
        <View style={[{justifyContent:'space-evenly', marginVertical:10}]}>
        // .... right content
        </View>
        </View>





        share|improve this answer













        This is how i get content inline one at left and one at right. Also you have typo in your code .. rename style with styles



         <View style={[{flexDirection:'row', alignItems:'center'}]}>
        <View style={[{flex:1,flexDirection:'row'}]}>
        //... left content
        </View>
        <View style={[{justifyContent:'space-evenly', marginVertical:10}]}>
        // .... right content
        </View>
        </View>






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 23 '18 at 7:07









        Hamza AhmedHamza Ahmed

        363




        363






























            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%2f53440774%2fhow-to-get-2-react-native-view-in-the-same-line%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

            404 Error Contact Form 7 ajax form submitting

            How to know if a Active Directory user can login interactively

            TypeError: fit_transform() missing 1 required positional argument: 'X'