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

A simple contact form developed in Flutter by Mouli Bheemaneti.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:mb_contact_form/mb_contact_form.dart';

/// Entry point of the app.
void main() {
  runApp(const MyApp());
}

/// Base class for the app.
class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: "MB Contact Form Demo",
      home: 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
160
points
125
downloads

Publisher

verified publishermoulibheemaneti.com

Weekly Downloads

A simple contact form developed in Flutter by Mouli Bheemaneti.

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