flutter_siri_suggestions
flutter_siri_suggestions copied to clipboard
Navigate to another page onLanch
Hello, i'm trying to navigate the user to another page when she/he use siri suggestion instead of the main page.
This is the code:
void initSuggestions() async {
FlutterSiriSuggestions.instance.configure(
onLaunch: (Map<String, dynamic> message) async {
debugPrint('[FlutterSiriSuggestions] [onLaunch] $message');
//Awaken from Siri Suggestion
///// TO DO : do something!
debugPrint(
"[FlutterSiriSuggestions] Called by ${message['key']} suggestion.");
Navigator.push(
context, MaterialPageRoute(builder: (context) => pageTwo()));
});
}
Unfortunately, it doesn’t work. It still take the user to the main page. 💔
Please help me 🥺