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

discontinued

Client of contact management system. Providing contact form widget. The widget can be customized and interlocked by the management service.

example/lib/main.dart

import 'package:contact_form/contact_form.dart';
import 'package:contact_form_example/routes.dart';
import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';

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

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

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

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      localizationsDelegates: const [
        S.delegate,
        GlobalMaterialLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate,
      ],
      supportedLocales: const [
        Locale('en', ''),
        Locale('ja', ''),
      ],
      routes: routes,
    );
  }
}
2
likes
50
points
66
downloads

Publisher

verified publisheralphabrend.com

Weekly Downloads

Client of contact management system. Providing contact form widget. The widget can be customized and interlocked by the management service.

Repository (GitHub)

License

MIT (license)

Dependencies

crypto, device_info_plus, email_validator, flutter, flutter_localizations, freezed, freezed_annotation, http, intl, json_annotation, json_serializable, package_info

More

Packages that depend on contact_form