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

Find IP Address in Windows Operating System Using Command Prompt

Hi,

There will always a chance to find IP address of your system when you connect it in your Internet Network.Because if you come from another series of IP address,you have to make it in same series as your current network.In order to change IP you have understand what is the current IP address of the PC.This method which i am going to explain is applicable to all windows operating systems like Windows XP,Windows 7,Windows 8,Windows 10,Windows 11 etc

So i will explain How to Find IP Address in Step by Step with help of Images

First Open Run Window (Using Window+R keys).Type as shown in the below image



You will see command prompt window is opened as shown below



Type ipconfig and press ENTER key



You can see IP address as shown below



Thanks