sheep_auth 1.0.0 copy "sheep_auth: ^1.0.0" to clipboard
sheep_auth: ^1.0.0 copied to clipboard

Flutter plugin that provides simple auth for VK, Google, Facebook and Apple.

example/lib/main.dart

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


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

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

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {

  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        )
      ),
    );
  }
}
1
likes
30
pub points
0%
popularity

Publisher

verified publishersheep-apps.com

Flutter plugin that provides simple auth for VK, Google, Facebook and Apple.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on sheep_auth