Native UI shadow

0
Hi Team, I have started the working on native application, am struggling to  develop the UI for login page    How can I add shadow for the container I tried few  code unlikely it failed for me   can any help me to sort it out.
asked
2 answers
4

Hi Kevin,

 

You can try this code to get the shadow for the container.

 

export const cardShadow= {

    container: {

        elevation: 1.5,

        shadowColor: "#000",

        shadowOpacity: 1,

        shadowRadius: 100,

        shadowOffset: {

            width: 10,

            height: 2

        }

}

};

REF

====

I hope it helps.

answered
0

Hi Kevin,

 

Check this document 
Creating a UI with box shadow in react native - Stack Overflow 

Thanks

answered