I'm working on a Flutter application. I'm trying to display local notification in background. I know it's not possible to run dart code in background currently. So I'm trying to display these notifications with iOS. To display these notifications, I have to create a new ViewController but when I launch my Flutter app, the ViewController of Flutter is running but not the one on the iOS side.
I'm new to iOS development. Is there a solution to run two ViewController? Is there another solution to launch my local notification?