Showing: 41 - 50 of 55 Articles

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 …

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 …