Uncategorized
SVG in flutter
Why SVG? SVG stands for scalable vector graphics. There may be many reasons to use SVGs, your graphic designer friend might have been exported the app visuals as SVG or simply you may not want to use 5 different rasterized images for your app. How …

Install Flutter on a MAC
System Requirements Operating Systems: macOS (64-bit) Disk Space: 700 MB (does not include disk space for IDE/tools). Tools: Flutter depends on these command-line tools being available in your environment. Step 1 : Download Flutter SDK from official website https://flutter.dev/docs/get-started/install/macos and Extract the file in the desired location Step 2: Open …
React native code push
What is code push:- CodePush is cloud service that enables React Native & Cordova developers to deploy mobile app update instantly to their users devices. It Works by acting as central repository that developers can publish updates to (JS,HTML,CSS and …

React Native : Unable to build app (Android issue)
Steps: Use latest library versions & gradle dependancy methods ( i.e Use implementation instead of compile ). Use new versions of third party dependancy in android gradle ( i.e api version 28.0.3 instead of 21.0.0 ). Always use new maximum api version.

Chat Using Firebase
What is Firebase? Firebase was founded in 2012 as a real-time architecture for syncing data between apps. It was acquired by Google in 2014. Originally, it was a part of Envolve, a real-time chat integration API. Overtime, the developers realized that the system was being …

Docusign Digital Signature Integration
In the World of digitalization, sometimes we need to sign digital signature on the documentation over the geolimit. There are the many websites provide the digital signature. https://www.docusign.in/ https://signrequest.com https://www.hellosign.com https://eversign.com here we are describing, easy step to get integrate DocuSign to our projects. Signing PDFs People …
react js Av Form and reactstrap validation
import React from ‘react’; import { AvForm, AvField, AvGroup, AvInput, AvFeedback, AvRadioGroup, AvRadio, AvCheckboxGroup, AvCheckbox } from ‘availity-reactstrap-validation’; import { Button, Label, FormGroup } from ‘reactstrap’; export default class Example extends React.Component { constructor(props) { super(props); this.handleSubmit = this.handleSubmit.bind(this); this.state = {}; } handleSubmit(event, errors, …
Generic Recycleview with Adapter in Kotlin
Now I will show you how to use Generic RecycleView for different View Types. First of creating Generic Recycleview Adapter (GenericAdapter) class as below. import android.support.v7.widget.RecyclerView import android.view.LayoutInflater import android.view.View import android.view.ViewGroup abstract class GenericAdapter : RecyclerView.Adapter { var listItems: List constructor(listItems: List) { this.listItems …
Git Documentation for basic steps
These are basic git commands which is required in daily code managing. -To start project – To get latest code from remote – To set your local code in remote – Deleting branch – Deleting file – Revert to previous commit Basic Git Commands:- git clone git-path …