Explanation: I want to display an image using tag in react native.I put a single image in my src directory and load local image from it in my tag.It working fine.
Issue
If we compare this structure with our android drawable directories then i there is some doubts i have.
In android, There are five drawable directory. There are five different drawable directories which is list below:
drawable-mdpi drawable-hdpi drawable-xhdpi drawable-xxhdpi drawable-xxxhpi
In all the directories an image file lies with the same name. According to the device density it used the resources which we put into the drawable directories.
Question
My question is if we create an application using react native. What is the structure of the drawable directories to satisfy the requirement of the different densities devices?