See https://docs.mendix.com/howto/mobile/native-styling.
The file styles → native → core → widgets → listview.js contains the options of your listview, but no obvious parameter to get this striping pattern done.
Give the background options a try as you can find in ../variables.js by setting secondary to #F88 for instance:
let background = {
primary: "#FFF",
secondary: setContrastScale(0.03, "#FFF"),
};
Hi Ankita,
Did you already find a solution? I'm trying to have a different style for the first and last listitem in my native app but can't find how.
Kolien