mb_contact_form 0.0.1 copy "mb_contact_form: ^0.0.1" to clipboard
mb_contact_form: ^0.0.1 copied to clipboard

A new Flutter package project. This is a simple contact form.

example/main.dart

/// Ensure you use the below two packages in the file which you are working on
import 'package:flutter/material.dart';
import 'package:mb_contact_form/mb_contact_form.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("MB Contact Form Demo"),
        elevation: 0,
      ),
      body: const MBContactForm(
        hasHeading: true,
        withIcons: false,
        destinationEmail: "email@gmail.com",
      ),
    );
  }
}
5
likes
140
points
8
downloads

Publisher

verified publishermoulibheemaneti.com

Weekly Downloads

A new Flutter package project. This is a simple contact form.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, mb_button, url_launcher

More

Packages that depend on mb_contact_form