aiprise_flutter_sdk 0.0.3 copy "aiprise_flutter_sdk: ^0.0.3" to clipboard
aiprise_flutter_sdk: ^0.0.3 copied to clipboard

outdated

Identity verification made simple

example/lib/main.dart

import 'package:flutter/material.dart';

import "./example_cupertino.dart";
import "./example_material.dart";

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return const SizedBox.expand(
      child: Column(
        children: [
          Expanded(child: MaterialExample()),
          Divider(
            height: 1,
          ),
          Expanded(
            child: CupertinoExample(),
          ),
        ],
      ),
    );
  }
}