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 ...

app keeps stopping error solved in android studio emulator using logcat in react native project

Hi friends,





In below video i fix the error which i got when i was working with android emulator in android studio.It was a react native project.I got the error app keeps stopping  on my android emulator.I couldn't find any solution.Later i used logcat in android studio to find the reason behind app keeps stopping error



If you face same error in your react native development,please use logcat and fix this types of errors.There may be lots of reasons for Unfortunately App Has Stopped or app keeps stopping errors.So i suggest to use logcat to find correct reason behind each errors


Please like and subscribe my channel

Thanks