animated_contact_us 0.0.8 copy "animated_contact_us: ^0.0.8" to clipboard
animated_contact_us: ^0.0.8 copied to clipboard

A customizable Flutter widget for animated contact cards and social media links.

animated_contact_us #

A beautiful and customizable Flutter widget to display animated contact information and social media links with smooth entry effects.

Ideal for apps, portfolios, or business apps that want to provide sleek, professional contact UIs with little effort.


Developed by George Amany, a Flutter developer, with guidance and mentorship by Abdelrahman Ibrahem (Tech Lead).
This package reflects great teamwork and technical support throughout the process. If you like this package, please give it a like on pub.flutter-io.cn so more people can find and benefit from it.


✨ Features #

  • Animated entry for contact cards and social icons
  • Customizable primary color and labels
  • Supports phone, email, website, WhatsApp
  • Built-in support for social media icons:
    • Facebook
    • Instagram
    • Twitter (X)
    • GitHub
    • WhatsApp
    • Snapchat
    • LinkedIn
    • TikTok
  • Mouse hover animations (Web/Desktop)
  • Tap animations (Mobile)

Preview #

Demo #

Getting started #

Add this to your pubspec.yaml:

dependencies:
  animated_contact_us: ^0.0.8

## Usage

Example of how to use the `AnimatedContactUs`:

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Contact Us Demo',
      theme: ThemeData(primarySwatch: Colors.teal),
      home: Scaffold(
        body: Padding(
          padding: const EdgeInsets.all(16),
          child: AnimatedContactUs(
            phone: '+1 (123) 456-7890',
            email: 'example@email.com',
            website: 'example.com',
            instagram: 'yourprofile',
            facebook: 'yourpage',
            twitter: 'yourhandle',
            github: 'yourgithub',
            whatsapp: '+11234567890',
            snapchat: 'snapname',
            linkedIn: 'linkedinid',
            tiktok: 'tiktokuser',
            showLabels: true,
            primaryColor: Colors.teal,
            emailLabel: 'Email',
            phoneLabel: 'Phone',
            websiteLabel: 'Website',
            followUsLabel: 'Follow us on',
          ),
        ),
      ),
    );
  }
}
4
likes
160
points
59
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable Flutter widget for animated contact cards and social media links.

Repository (GitHub)
View/report issues

Topics

#contact #social #widget #animation #user-interface

Documentation

API reference

License

MIT (license)

Dependencies

flutter, font_awesome_flutter, url_launcher

More

Packages that depend on animated_contact_us