flutter_github_api 0.1.12 copy "flutter_github_api: ^0.1.12" to clipboard
flutter_github_api: ^0.1.12 copied to clipboard

outdated

A Github Api Flutter package, dependendy on github library. it can help us to easy get information from github.

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'flutter github login demo'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);
  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'there is account ',
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: null,
        tooltip: 'login',
        child: Icon(Icons.people),
      ),
    );
  }
}
0
likes
0
pub points
0%
popularity

Publisher

verified publisherflutter-jp.com

A Github Api Flutter package, dependendy on github library. it can help us to easy get information from github.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

dio, flutter, github, json_annotation

More

Packages that depend on flutter_github_api