diff --git a/example/lib/main.dart b/example/lib/main.dart index 3a61e9d..bb86765 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -3,16 +3,17 @@ // // SPDX-License-Identifier: MIT -// Example app deps, not necessarily needed for tor usage. +// Flutter dependencies not necessarily needed for tor usage: import 'dart:async'; import 'dart:convert'; import 'dart:io'; import 'package:flutter/material.dart'; -// Imports needed for tor usage: -import 'package:socks5_proxy/socks_client.dart'; // Just for example; can use any socks5 proxy package, pick your favorite. -import 'package:tor/socks_socket.dart'; // For socket connections -import 'package:tor/tor.dart'; +// Example application dependencies you can replace with any that works for you: +import 'package:socks5_proxy/socks_client.dart'; +import 'package:tor/socks_socket.dart'; +// The only real import needed for basic usage: +import 'package:tor/tor.dart'; // This would go at the top, but dart autoformatter doesn't like it there. void main() { runApp(const MyApp());