flutter_aws_amplify_cognito 1.0.0+1 copy "flutter_aws_amplify_cognito: ^1.0.0+1" to clipboard
flutter_aws_amplify_cognito: ^1.0.0+1 copied to clipboard

outdated

Flutter plugin for AWS Amplify Cognito based Authentication.

example/lib/main.dart

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

import 'package:flutter_aws_amplify_cognito/flutter_aws_amplify_cognito.dart';
import 'package:flutter_aws_amplify_cognito_example/authentication.dart';

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

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

class _MyAppState extends State<MyApp> {

    final List<Widget> components = [Authentication()];

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('flutterAmplify'),
        ),
        drawer: Drawer(
          child: ListView(
            children: <Widget>[
              ListTile(
                title: Text('Authentication'),
              )
            ],
          ),
        ),
        body: components[0]
      ),
    );
  }
}
27
likes
0
pub points
0%
popularity

Publisher

verified publisheragnostech.in

Flutter plugin for AWS Amplify Cognito based Authentication.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_aws_amplify_cognito