contact_form 1.0.2 copy "contact_form: ^1.0.2" to clipboard
contact_form: ^1.0.2 copied to clipboard

discontinued
outdated

Client of contact management system

contact_form #

contact_form is a client for the Contact Nite contact management service.

Installation #

dependencies:
  flutter_contact: ^1.0.0

Getting Started #

Show contact form.

child: const ContactForm(
  applicationKey: 'your application form key',
),

For more information, see the document at contact-nite.com

Configuration #

child: ContactForm(
  applicationKey: 'your application form key',
  loading: const CircularProgressIndicator(),
  onSubmittionStarted: () {
    // Called when submit button is touched.
  },
  onCompleted: () {
    // Called when posting contact data is completed.
  },
  onInitializationError: () {
    // Called when initialization error occured.
    // (For example wrong key specified)
  },
  onSubmittionError: () {
    // Called when contact submittion error occured.
  },
),