Add Supa account and search changes

This commit is contained in:
Fabian Freund
2026-05-22 18:10:22 +02:00
parent 3a19865b2e
commit 51289f1266
374 changed files with 54061 additions and 5013 deletions
@@ -49,6 +49,15 @@ class Intent {
dartPackageName: 'simple_intent_receiver',
),
)
@HostApi()
abstract class IntentHost {
/// Returns the launch intent that started the activity, if any.
/// This allows Dart to retrieve an intent that arrived before
/// IntentEvents.setUp() was called (cold-start deep links).
/// Returns null if no launch intent is pending.
Intent? getInitialIntent();
}
@FlutterApi()
abstract class IntentEvents {
void onIntentReceived(int sequence, Intent intent);