Skip to main content

Featured post

How to Insert line break in Text component in React Native

Hi, I was developing an application in react native.I have to handle lots of text data in this small react native application.I have used  Text component in react native many times. While working on this application,i had a requirement to display some text content with line breaks.I will explain it clearly with an example.I want to display a text as shown below  Welcome Please subscribe my channel I wrote react native code as shown below <View> <Text> Welcome Please subscribe my channel </Text> <View> When i run these lines of code,It will display text as shown below Welcome Please subscribe my channel   - instead of displaying in two lines with line break,it displays in a single line.So i have to find a solution to insert line break in Text component in React Native.After lots of research,i found a clean solution as shown below <View> <Text> Welcome{"\n"} Please subscribe my channel </Text> <View> Here ...

How to rename files folders and directories in android studio react native project

Hi friends,



In this video,i explain how to rename files ,folders or directories in android studio.I used my react native project to change the current names to new names.Please watch my video to understand the steps to update file names or folder names in android studio




I hope you understand what i explained in the video.you can create a react native project and practice it from your end.So you will be able to rename files and folders in android studio.It is applicable not only to react native but also to all libraries and frameworks 

Thanks