social_media_flutter 0.0.1
social_media_flutter: ^0.0.1 copied to clipboard
A package to integrate your Social Links widget easily in your mobile and webapps.
import 'package:example/app.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(title: 'Flutter Demo', home: App());
}
}