Flutter Manual Trigger
Use manual trigger to open Fidbek UI from any action (Settings, Help, profile menu).
await FidbekFlutter.open();
Typical UI integration
ElevatedButton(
onPressed: () async {
await FidbekFlutter.open();
},
child: const Text('Send Feedback'),
)
Optional shutdown
If your app needs explicit cleanup on logout or lifecycle boundary:
await FidbekFlutter.shutdown();
Notes
open()should be called afterconfigure().- The plugin delegates to native SDK flows on iOS and Android.