privy_flutter 0.0.4
privy_flutter: ^0.0.4 copied to clipboard
Privy Flutter SDK enables seamless authentication, wallet management, and identity verification for Flutter apps with native iOS and Android support.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:privy_flutter_example/app.dart';
void main() {
runApp(const MyPrivyApp());
}
class MyPrivyApp extends StatelessWidget {
const MyPrivyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: "Privy Auth Example",
debugShowCheckedModeBanner: false,
home: AppScreen(), // Ensure this is wrapped inside MaterialApp
);
}
}
copied to clipboard