flutter_licensing 0.1.1
flutter_licensing: ^0.1.1 copied to clipboard
Offline Ed25519 license verification and feature entitlements for Flutter applications.
example/lib/main.dart
import 'package:flutter/material.dart';
void main() => runApp(const MaterialApp(home: LicenseExample()));
class LicenseExample extends StatelessWidget {
const LicenseExample({super.key});
@override
Widget build(BuildContext context) => const Scaffold(
body: Center(
child: Text('Configure trusted keys before importing a license.')),
);
}