python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
react-native flatlist with dynamic rows and columns
I'm trying to build a simple layout using FlatList in react-native application like this:
example-image. I need to create a dynamic layout depending on the item's index, so if index ===0 1st image sho...
reactjs
Votes: 0
Answers: 1
Get class member from next member's address
I'm wrapping a C interface and require to pass into it the address of a preallocated buffer. My wrapper places this buffer at a known location within wrapper object A. At runtime, I will be able to qu...
glades
Votes: 0
Answers: 0
Why can't I do char c = 'A'; c.toLowerCase() and instead have to do Character.toLowerCase(c);
Why is it only done like
char c = 'A';
Character.toLowerCase(c);
and not..
char c = 'A';
c.toLowerCase();
I find this very confusing and don't know where I can find more information about why this h...
ZaneK
Votes: 0
Answers: 1
Why can I not overwrite my wrapper in CSS?
Trying to make my website responsive and want to specify @media queries for mobile phones.
I have set a wrapper on my full body on each site to centre the content.
I set a new wrapper in @media but wa...
FSDevie
Votes: 0
Answers: 2