didww_verification_sms 1.0.0
didww_verification_sms: ^1.0.0 copied to clipboard
Android SMS Retriever support for the DIDWW verification client: automatic one-time code capture and the app hash the Retriever requires. Android only.
import 'package:flutter/material.dart';
import 'start_screen.dart';
void main() => runApp(const ExampleApp());
/// Demonstrates `didww_verification` and `didww_verification_sms`.
class ExampleApp extends StatelessWidget {
/// Creates the example app.
const ExampleApp({super.key});
@override
Widget build(BuildContext context) => MaterialApp(
title: 'didww_verification',
home: const StartScreen(),
);
}