i2p 0.0.7 i2p: ^0.0.7 copied to clipboard
A native protocol interface to the i2p network
import 'package:flutter/material.dart';
import 'package:i2p/i2p_manager_page.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: I2PManagerPage(),
);
}
}