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

outdated

This package will display a developer's socal profile information.

example/user_social_profile_example.dart

// ignore_for_file: depend_on_referenced_packages

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          title: const Text("Package Test"),
          centerTitle: true,
        ),
        body: const Center(
          child: UserSocialProfile(
            fullName: "Mustafa Tahir",
            icons: [
              SocialIcon(
                name: Platform.behance,
                link: "https://github.com/mustafatahirhussein",
                iconSize: 50,
              ),
              SocialIcon(
                name: Platform.medium,
                link: "https://github.com/mustafatahirhussein",
                iconSize: 50,
              ),
            ],
            email: "abc@gmail.com",
            phone: "+921234567890",
          ),
        ),
      ),
    );
  }
}
3
likes
0
points
117
downloads

Publisher

unverified uploader

Weekly Downloads

This package will display a developer's socal profile information.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cached_network_image, cupertino_icons, flutter, image_picker, url_launcher

More

Packages that depend on user_social_profile