Line height in React Native

Hi Devs', Welcome to infinitbility, This article help you to use lineHeight in react native with their output example. React Native provide lineHeight style props to make vertical space between text. let’s start today topic lineHeight in React Native Or how to use lineHeight in react native lineHeight default value is 0 use if developer not defined lineHeight for text. Table of contents lineHeight Props lineHeight 1 lineHeight 10 lineHeight 20 lineHeight Props Increase or decrease the spacing between text vertical height....

May 5, 2021 · 2 min · Infinitbility

Node.js sequelize query examples

Hello Friends, Welcome To Infinitbility! This article help you to write query in node with sequelize. here you get examples query of insert, update, select, delete, and join query with code snippest. Let’s start today topic Node.js sequelize query examples Or how to write query in node sequelize Table of content Insert query Update query Select query Delete query Join or Eager query Insert query Node sequelize provide create() method to create new record or row in table also return row id and row details....

May 5, 2021 · 3 min · Infinitbility

Laravel change string case

Hello Friends 👋, Welcome To Infinitbility! ❤️ Laravel provide multiple methods to change string or text case, here you get example convert text into title, uppercase, lowercase, ucfirst ( first char capitalize ). Let’s start today topic *** Laravel change string case *** or *** how to change text case in laravel *** Table of content Laravel titleCase Laravel ucfirst Laravel uppercase Laravel lowercase Laravel titleCase Laravel provide Str::title() helper to create text in title case....

May 4, 2021 · 1 min · Infinitbility

Letter spacing in React Native

Hi Devs', Welcome to infinitbility, This article help you to use letterSpacing in react native with their output example. React Native provide letterSpacing style props to make space between text. let’s start today topic letterSpacing in React Native Or how to use letterSpacing in react native letterSpacing default value is 0 use if developer not defined letterSpacing for text. Table of contents letterSpacing Props letterSpacing 1 letterSpacing 10 letterSpacing 20 letterSpacing Props Increase or decrease the spacing between characters....

May 4, 2021 · 2 min · Infinitbility

font weight in React Native

Hi Devs', Welcome to infinitbility, This article help you to use fontWeight in react native with their output example. React Native provide fontWeight style props to make text look bolder in application. let’s start today topic font weight in React Native Or how to use fontWeight in react native fontWeight default value is normal use if developer not defined fontWeight for text. Table of contents fontWeight Props fontWeight 100 fontWeight 500 fontWeight 900 fontWeight bold fontWeight Props Specifies font weight....

May 3, 2021 · 3 min · Infinitbility

Laravel query examples

Hello Friends 👋, Welcome To Infinitbility! ❤️ This article helps you write code of query in laravel, here you get examples of Insert, select, update, delete, and join query examples to use in your laravel project. Before the start article, I have shared some articles’ link may you help check out below links Laravel Model Tutorial ( How to create model in laravel ) https://infinitbility.com/laravel-model Laravel select only first row ( get only first match row )...

May 3, 2021 · 3 min · Infinitbility

React native net info example

Hello Friends, Welcome To Infinitbility! we need to check internet connection before call api in react native and today we are going to learn how to check internet connection and if not available then show error No Internet Connection. This article help you to manage internet connection on your react native application. here you will get code snipest to know internet available or not in user phone. React Native provide netinfo package to handle internet but it’s now move to react native netinfo package ( https://github....

May 2, 2021 · 2 min · Infinitbility

RGB in react native

Hi Devs', Welcome to infinitbility, This article help you to use rgb() in react native same like we use in web. let’s start today topic RGB in react native Or how to use rgb() in react native The rgb() function define colors using the Red-green-blue (RGB) model. An RGB color value is specified with: rgb(red, green, blue). Each parameter defines the intensity of that color and can be an integer between 0 and 255 or a percentage value (from 0% to 100%)....

May 2, 2021 · 1 min · Infinitbility

integrate Mustache nodejs example

Hello Friends, Welcome To Infinitbility! This article explain and provide example to implement Mustache template in node js. we are assuming you want send mustache template content in your mail function. Let’s start today topic integrate mustache template in nodejs with typescript Start with Installation npm install consolidate mustache --save install consolidate and mustache library to setup mustache render engine Setup mustache engine app.ts import consolidate engine import engine from "consolidate"; create private function initializeMailTemplate private initializeMailTemplate(){ // set templates folder this....

May 1, 2021 · 2 min · Infinitbility

Text align in react native

Hi Devs', Welcome to infinitbility, This article help you to understand textAlign props in react native. you wil get multiple posiable example of textAlign props to change effect in react native. Let’s start today topic Text align in react native Or how to align text in react native Table of contents textAlign Props textAlign left textAlign center textAlign right textAlign justify textAlign Props textAlign use for align text in react native like left, right, etc....

May 1, 2021 · 3 min · Infinitbility

fontStyle in react native

Hi Devs', Welcome to infinitbility, This article explain to make italic text in react native using fontStyle props. Let’s start today topic fontStyle in react native Or how do make italic text in react native React Native provide fontStyle props to make text in italic let’s understand with example. React Native italic font example italicFontStyle.js import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; const LotsOfStyles = () => { return ( <View style={styles....

April 30, 2021 · 1 min · Infinitbility

Safemode in windos 7 and 10

Hi Friends, Welcome To Repairbility! This article explain to go in Safemode on your windows 7 and 10 machine. Let’s start today topic Safemode in windos 7 and 10 you have going safe mod because you have same driver or software problem in your computer Solution: For Windows 7 users press the power button of your computer then press the f8 button continuously and you get several options on your screen...

April 30, 2021 · 1 min · Repairbility

How to install drivers on your windows

Hi Friends, Welcome To Repairbility! This article help you to install driver on your windows machine. let’s start today topic How to install drivers on your windows driver is software that a device uses to work with your pc. Download new drivers, go to PC manufacturer’s website or device manufacturer’s website. for an external device, you need to install the driver yourself, you need to download the driver manually. If you need to download the driver from the device manufacturer, then you are required to know the device model....

April 29, 2021 · 2 min · Repairbility

Mute and Unmute functionality in mediastream react

Hello Friends 👋, Welcome To Infinitbility! ❤️ in this article, we are use RecordRTC and MediaStream to record audio. This article provide example to add mute and unmute functionality in your react web rtc application. Let’s start today topic how to add mute and unmute functionality in mediastream react let audioTrack; await navigator.mediaDevices .getUserMedia({ audio: true }) .then((audioStream) => { let track = audioStream.getAudioTracks(); if(track.length){ audioTrack = track[0]; } let finalTrack = new MediaStream(); // audioStream....

April 28, 2021 · 1 min · Infinitbility

Laravel exist and doesntExist query Example

Hello Friends 👋, Welcome To Infinitbility! ❤️ Many devs use count() method to check record exist or not in table and some are use get() method but laravel provide exist() and doesntExist() method to check record exist or not. This article provide example to use exist() and doesntExist() method in laravel let’s start today topic Laravel exist and doesntExist query Example or how to check record exist or not in laravel....

April 27, 2021 · 1 min · Infinitbility

Laravel Select First Row Only

Hello Friends 👋, Welcome To Infinitbility! ❤️ this article explain how to Select only first row or single row in laravel. laravel provide first() method to Select only single row using first() you will not required to write like this $array[0]. If you just need to retrieve a single row from a database table, you may use the DB facade’s first method. This method will return a single stdClass object:...

April 26, 2021 · 1 min · Infinitbility

Task transform dex archive with dex merger for debug failed in react native

Hello Friends 👋, Welcome To Infinitbility! ❤️ In this article, you will solve your Task :app:transformDexArchiveWithDexMergerForDebug FAILED issue in your application. If your methods + your dependencies method greater then 64k+ methods then your react native throwing DexMerger error. Follow some simple steps you absolutely solved this error. Step 1: Enable MultiDex Dir - Project/Android/app/build.gradle android { defaultConfig { ... minSdkVersion 15 targetSdkVersion 28 multiDexEnabled true // add this line } ....

April 25, 2021 · 1 min · Infinitbility

React native video example with custom control

Hello Friends 👋, Welcome To Infinitbility! ❤️ React Native video provides the functionality to play video in your react native application with native controls but not supported in iOS i.e devs search about video control library or custom control. many devs choose to a react native video player or react native video control for show controls on video but in this article, we will implement our own video controls for both platforms (android, ios)....

April 24, 2021 · 18 min · Infinitbility

how to make bootable pendrive for win 10

Hello Friends, Welcome To Repairbility! step1:you have to downloads win 10 iso file & bootable software ( WinSetupFromUSB-1-8 ) step2:you have require minimum 8 gb pendrive and instal (WinSetupFromUSB-1-8)& right click and run as administretor (WinSetupFromUSB_1-8_x64.exe) step3:selct usb disk empty 8 gb pendrive and tick auto format it with fbinst and selct 2nd option (windows7/8/10 based iso) and click on go and mack bootable pendrive susesfully Thanks for reading…

April 23, 2021 · 1 min · Repairbility

how to download free windows 10 iso file

Hello Friends, Welcome To Repairbility! windows 10 iso file downloads from Microsoft this is the safest secure way for The genuine ISO from the Microsoft website is the up-to-date iso of the Windows os. You can use a boot-able medium like a DVD to which the iso is burnt or use any USB image burning software like Rufus to make a bootable pan drive. After which you can use these medium to install yourself windows os....

April 22, 2021 · 1 min · Repairbility