We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7a6881 commit 4c82073Copy full SHA for 4c82073
demos/supabase-todolist/lib/powersync.dart
@@ -171,7 +171,11 @@ Future<void> openDatabase() async {
171
// If the user is already logged in, connect immediately.
172
// Otherwise, connect once logged in.
173
currentConnector = SupabaseConnector();
174
- db.connect(connector: currentConnector, options: options);
+ db.connect(
175
+ connector: currentConnector,
176
+ options: SyncOptions(
177
+ syncImplementation: SyncClientImplementation.rust,
178
+ appMetadata: {'app_version': '1.0.1'}));
179
}
180
181
Supabase.instance.client.auth.onAuthStateChange.listen((data) async {
0 commit comments