flutter_github 0.0.4 copy "flutter_github: ^0.0.4" to clipboard
flutter_github: ^0.0.4 copied to clipboard

outdated

A new Flutter plugin to get details of Github account of any user such as name, bio, profile image and other details.

Flutter package to get details of Github user

How to Use #

To use flutter_github start by importing the package

import 'package:flutter_github/flutter_github.dart';

Get Profile Details #

FlutterGithub _flutterGithub = new FlutterGithub();
await _flutterGithub.getUserData(userName);
print("Name: ${_flutterGithub.name}")
print("Bio: ${_flutterGithub.bio}")
print("Image: ${_flutterGithub.image}")
print("Followers: ${_flutterGithub.followers}")
print("Following: ${_flutterGithub.following}")
print("CreatedAt: ${_flutterGithub.createdAt}")
print("UpdatedAt: ${_flutterGithub.updatedAt}")
print("Public Repos: ${_flutterGithub.publicRepos}")
print("Public Gists: ${_flutterGithub.publicGists}")
print("Email: ${_flutterGithub.email}")
print("Company: ${_flutterGithub.company}")
print("Location: ${_flutterGithub.location}")

Example #

See Example

Created By Chetan

7
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter plugin to get details of Github account of any user such as name, bio, profile image and other details.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http, url_launcher

More

Packages that depend on flutter_github