login_button 0.0.1 copy "login_button: ^0.0.1" to clipboard
login_button: ^0.0.1 copied to clipboard

Dart 1 only

Login button that becomes a circular progressbar on click.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:login_button/login_button.dart';

void main() => runApp(new MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
          title: new Text('Login Button example app'),
        ),
        body: new Center(child: new LoginButton()),
      ),
    );
  }
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

Login button that becomes a circular progressbar on click.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on login_button