flutter_locker 2.0.4 copy "flutter_locker: ^2.0.4" to clipboard
flutter_locker: ^2.0.4 copied to clipboard

outdated

Secures your secrets in keychain using biometric authentication (Fingerprint, Touch ID, Face ID...)

example/lib/main.dart

import 'dart:async';

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_locker/flutter_locker.dart';

void main() {
  runApp(MaterialApp(home: Scaffold(body: MyApp())));
}

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

class _MyAppState extends State<MyApp> {
  String key = 'pwdkey';
  String secret = '1111';

  Future<void> _canAuthenticate() async {
    try {
      final canAuthenticate = await FlutterLocker.canAuthenticate();

      _showMessage('Can authenticate: $canAuthenticate');
    } on Exception catch (exception) {
      _showErrorMessage(exception);
    }
  }

  Future<void> _saveSecret() async {
    try {
      await FlutterLocker.save(
        SaveSecretRequest(key, secret, AndroidPrompt('Authenticate', 'Cancel')),
      );

      _showMessage('Secret saved, secret: $secret');
    } on Exception catch (exception) {
      _showErrorMessage(exception);
    }
  }

  Future<void> _retrieveSecret() async {
    try {
      final retrieved = await FlutterLocker.retrieve(RetrieveSecretRequest(key,
          AndroidPrompt('Authenticate', 'Cancel'), IOsPrompt('Authenticate')));

      _showMessage('Secret retrieved, secret: $retrieved');
    } on Exception catch (exception) {
      _showErrorMessage(exception);
    }
  }

  Future<void> _deleteSecret() async {
    try {
      await FlutterLocker.delete(key);

      _showMessage('Secret deleted');
    } on Exception catch (exception) {
      _showErrorMessage(exception);
    }
  }

  void _showMessage(String message) {
    ScaffoldMessenger.of(context).showSnackBar(
      SnackBar(content: Text(message)),
    );
  }

  void _showErrorMessage(Exception exception) {
    ScaffoldMessenger.of(context).showSnackBar(
      SnackBar(content: Text('Something went wrong: $exception')),
    );
  }

  @override
  Widget build(BuildContext context) {
    return SafeArea(
      child: Column(
        children: <Widget>[
          SizedBox(height: 100),
          Center(
            child: Text(
              'Locker example',
              style: TextStyle(fontSize: 24),
            ),
          ),
          SizedBox(height: 40),
          CupertinoButton.filled(
            child: Text('Can authenticate'),
            onPressed: _canAuthenticate,
          ),
          SizedBox(height: 20),
          CupertinoButton.filled(
            child: Text('Save secret'),
            onPressed: _saveSecret,
          ),
          SizedBox(height: 20),
          CupertinoButton.filled(
            child: Text('Retrieve secret'),
            onPressed: _retrieveSecret,
          ),
          SizedBox(height: 20),
          CupertinoButton.filled(
            child: Text('Delete secret'),
            onPressed: _deleteSecret,
          )
        ],
      ),
    );
  }
}
46
likes
0
pub points
88%
popularity

Publisher

verified publisherinfinum.com

Secures your secrets in keychain using biometric authentication (Fingerprint, Touch ID, Face ID...)

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, protobuf

More

Packages that depend on flutter_locker