new_raven_verification 0.0.2 copy "new_raven_verification: ^0.0.2" to clipboard
new_raven_verification: ^0.0.2 copied to clipboard

Raven bank mobile KYC plugin

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:new_raven_verification_example/app_spalsh.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(home: AppSplash());
  }
}