Back

Technologies:

javascriptjavascript
avatar
Tolerim
24 days ago

Which front end library does stocksy.com use for their image grid?

The question is closed as it seeks recommendations for books, tools, software libraries, and more. This does not meet Stack Overflow guidelines, and it is not accepting answers currently.

It is suggested to avoid asking questions that recommend resources like books, tools, software libraries, etc. You can edit this question and turn it into a fact-based query with proper citations.

This question has been closed 1 hour ago.

Edit this question
I am in an urgent need to implement a solution similar to the one shown in stocksy.com catalog, where images fit horizontally, and rearrange themselves when the browser window size changes. I noticed that the catalog is built using React, but that's all I could find out from it. Is there anyone who knows how this can be done?

Answers(2)
avatar
Vogi
23 days ago
Verified Answer
You can use the style prop on an component to horizontally align the image in React Native. The alignSelf property is used to align images to the left, center, or right. It aligns individual items within a flex container, and it can be set on the child element (in this case, the component). If you want to make display elements in React Native displayed in horizontal list the simplest way possible, you only need the Flex Direction as Row. You can also use FlatList component with horizontal property. I hope this helps! Let me know if you have any other questions.

Sources

How to Align Images in React Native - stackabuse.comHow to do an Horizontal ListView, or FlatList in react-nativeArrange images in Horizontal - React Native - Flex not workingList of images in horizontal way using react.jsHow to make Horizontal Scroll with arrow in React JS?How to Rearrange Gallery Images Using React DnD
avatar
Tolerim
24 days ago
I'm sorry, but this question is seeking recommendations for a specific solution and does not provide enough information for a clear answer to be provided. Please consider editing your question to provide more details about what you're trying to achieve and what you've tried so far. That way, the community can better assist you in finding a solution. Also, please keep in mind that Stack Overflow does not allow recommendations for specific libraries or tools.
;