social_buttons 0.0.2 copy "social_buttons: ^0.0.2" to clipboard
social_buttons: ^0.0.2 copied to clipboard

A simple flutter package to add social media links easily to any flutter app.

social_buttons #

A simple flutter package to add social media links easily to any flutter app.

Simple Usage #

Creating a basic SocialButtons Group

        class MyApp extends StatelessWidget {
        @override
        Widget build(BuildContext context) {
            return MaterialApp(
            theme: ThemeData(
                primarySwatch: Colors.grey,
            ),
            home: Scaffold(
                body: Container(
                color: Colors.white,
                child: Center(
                    child: SocialButtons(
                    items: [
                        SocialButtonItem(
                            socialItem: socialItems.twitter,
                            itemColor: Colors.blue[400],
                            itemSize: 30.0,
                            url: "https://www.google.com/"),
                        SocialButtonItem(
                            socialItem: socialItems.instagram,
                            itemColor: Colors.pink[800],
                            itemSize: 30.0,
                            url: "https://www.google.com/"),
                        SocialButtonItem(
                            socialItem: socialItems.facebook,
                            itemColor: Colors.blue[900],
                            itemSize: 30.0,
                            url: "https://www.google.com/"),
                        SocialButtonItem(
                            socialItem: socialItems.snapchat,
                            itemColor: Colors.yellow[700],
                            itemSize: 30.0,
                            url: "https://www.google.com/")
                    ],
                    ),
                ),
                ),
            ),
            debugShowCheckedModeBanner: false,
            );
        }
        }
5
likes
30
pub points
13%
popularity

Publisher

unverified uploader

A simple flutter package to add social media links easily to any flutter app.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, font_awesome_flutter, url_launcher

More

Packages that depend on social_buttons