Flutter implementation of lorey/social-media-profiles-regexs
This package lists regular expressions to match and extract information from URLs of social media profiles. So if you find a hyperlink to this repo somewhere on the web, i.e. https://github.com/lorey/social-media-profiles-regexs/, the regular expressions in this repo allow you find out it's a Github link pointing to a repo as well as extract the username lorey and the repo name social-media-profiles-regexs from this URL.
To use this plugin, add url_recognizer as a dependency in your pubspec.yaml file.
dependencies:
...
url_recognizer: ^1.0.0class _MyAppState extends State<MyApp> {
final List<SocialUrl> _recognizedSocials = List<SocialUrl>.empty(growable: true);
@override
void initState() {
for (String socialLink in kUrlSamples) {
SocialUrl? socialUrl = UrlRecognizer.findObject(url: socialLink);
if (socialUrl != null) {
_recognizedSocials.add(socialUrl);
}
}
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SingleChildScrollView(
child: Container(
width: double.infinity,
padding: EdgeInsets.all(20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: _recognizedSocials.map((SocialUrl e) => _SocialLinkPreview(socialUrl: e)).toList(),
),
),
),
),
);
}
}- Phone
- Github
- Medium
- Skype
- Snapchat
- Telegram
- Youtube
Facebook Profile
// Call method
FacebookDetector().build('http://fb.com/peter_parker-miller');// Get method result
FacebookProfile(
profile: 'peter_parker-miller',
),Facebook Profile By id:
// Call method
FacebookDetector().build('https://www.facebook.com/profile.php?id=100004123456789');// Get method result
FacebookProfileById(
id: '100004123456789',
)Github User:
// Call method
FacebookDetector().build('https://github.com/lorey');// Get method result
GithubUser(
login: 'lorey',
),Github Repo:
// Call method
FacebookDetector().build('https://github.com/lorey/socials');// Get method result
GithubRepo(
login: 'lorey',
repo: 'socials',
),etc...
Please file any issues, bugs or feature request as an issue on our GitHub page.
If you would like to contribute to the plugin (e.g. by improving the documentation, solving a bug or adding a cool new feature), please send us your pull request.