use overlay buidler instead of instance

This commit is contained in:
Fabian Freund
2025-08-01 20:48:21 +02:00
parent 28a8588051
commit a3d0eadac3
5 changed files with 14 additions and 11 deletions
@@ -51,7 +51,10 @@ class StartProxyController extends _$StartProxyController {
ref
.read(overlayControllerProvider.notifier)
.show(Positioned(top: 0, left: 0, child: TorNotification()));
.show(
(context) =>
Positioned(top: 0, left: 0, child: TorNotification()),
);
await connection;
}
@@ -7,7 +7,7 @@ part of 'start_tor_proxy.dart';
// **************************************************************************
String _$startProxyControllerHash() =>
r'b83cdc1b6d1c358a2042ff2b7cc2f19f82e5d5ed';
r'3e8b409f069f32b601b1c60acbe0a72694fd1cc2';
/// See also [StartProxyController].
@ProviderFor(StartProxyController)