Skip to main content

Posts

Showing posts from April, 2023

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

Create a database in postgreSQL server and list all database in postgreSQL Server

How to install PostgreSQL 15 and pgAdmin 4 on windows 7,8,10,11 64 bit operating systems explained

TransformException Failed to transform react native 0 71 0 rc 0 debug aar to to match attributes solved

Execution failed for task ':react-native-reanimated:externalNativeBuildDebug' solved

react-native-gesture-handler module was not found. Make sure you're running your app on the native platform and your code is linked properly (cd ios && pod install && cd ..)

A module failed to load due to an error and `AppRegistry.registerComponent` wasn't called., js engine: hermes

Error: Activity class {com.frontend/com.frontend.MainActivity} does not exist solved

Failed to construct transformer: Error: error:0308010C:digital envelope routines::unsupported fixed

Error: Command failed: git status -s fatal: not a git repository (or any of the parent directories): .git

What is the difference between Decimal and Numeric Data Types in SQL

Delete vs Truncate in SQL Explained

Find IP Address in Windows Operating System Using Command Prompt

Primary Key Violation explained with composite key

How to Change name of Database in SQL Server using SSMS and ALTER, sp_renamedb commands

How To Set SQL Database Read Only Using SQL Server Management Studio and using SQL Query explained