dkscontactus 0.0.1+4 copy "dkscontactus: ^0.0.1+4" to clipboard
dkscontactus: ^0.0.1+4 copied to clipboard

This package gives you fast and simple way to include contact us page in your app.

example/main.dart

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

void main() {
  runApp(const MaterialApp(
    debugShowCheckedModeBanner: true,
    title: 'Contact-us',
    home: ContactUsPage(),
  ));
}

class ContactUsPage extends StatefulWidget {
  const ContactUsPage({super.key});

  @override
  State<ContactUsPage> createState() => _ContactUsPageState();
}

class _ContactUsPageState extends State<ContactUsPage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: SafeArea(
          child: Center(
        child: DksContactUs(
          dialogTextStyle: TextStyle(color: Colors.black),
          isCircularIcon: true,
          email: 'dksdev.com@gmail.com',
          emailText: 'Send email',
          websiteText: 'Dks Dev.',
          website: 'https://www.dksdev.com',
          textStyle: TextStyle(color: Colors.white),
          cardColor: Colors.black,
        ),
      )),
    );
  }
}
7
likes
140
pub points
15%
popularity

Publisher

unverified uploader

This package gives you fast and simple way to include contact us page in your app.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, url_launcher

More

Packages that depend on dkscontactus