tw_login 1.1.4 copy "tw_login: ^1.1.4" to clipboard
tw_login: ^1.1.4 copied to clipboard

modified package for personal usage. This pack fixes 'TwitterKit/TwitterKit.h' file not found error. I am publishing this version for my own packages. orginal package is on BSD 2-Clause "Simplifie [...]

flutter_twitter_login #

pub package Build Status Coverage Status

A Flutter plugin for using the native TwitterKit SDKs on Android and iOS.

This plugin uses the new Gradle 4.1 and Android Studio 3.0 project setup.

Dart support #

  • Dart 1: 1.0.x.
  • Dart 2: 1.1.0 and up.

Installation #

See the installation instructions on pub. No platform-specific configuration is needed!

How do I use it? #

Here's some sample code that should cover most of the cases. For full API reference, just see the source code. Everything is documented there.

var twitterLogin = new TwitterLogin(
  consumerKey: '<your consumer key>',
  consumerSecret: '<your consumer secret>',
);

final TwitterLoginResult result = await twitterLogin.authorize();

switch (result.status) {
  case TwitterLoginStatus.loggedIn:
    var session = result.session;
    _sendTokenAndSecretToServer(session.token, session.secret);
    break;
  case TwitterLoginStatus.cancelledByUser:
    _showCancelMessage();
    break;
  case TwitterLoginStatus.error:
    _showErrorMessage(result.error);
    break;
}
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

modified package for personal usage. This pack fixes 'TwitterKit/TwitterKit.h' file not found error. I am publishing this version for my own packages. orginal package is on BSD 2-Clause "Simplified" License.

Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on tw_login