Skip to content

A Flutter plugin that helps you to restart the whole Flutter app with a single function call by using native APIs.

License

Notifications You must be signed in to change notification settings

gabrimatic/restart_app

Repository files navigation

Restart app in Flutter

A Flutter plugin that helps you to restart the whole Flutter app with a single function call by using Native APIs.

How to use it?

1. Add the package to pubspec.yaml dependency:

dependencies:
  restart_app: ^1.3.0

2. Import package:

import 'package:restart_app/restart_app.dart';

3. Call the restartApp method where ever you want:

onPressed: () {
	Restart.restartApp(
		/// In Web Platform, Fill webOrigin only when your new origin is different than the app's origin
		// webOrigin: 'http://example.com',

		// Customizing the notification message only on iOS
		notificationTitle: 'Restarting App',
		notificationBody: 'Please tap here to open the app again.',
	);
}

iOS Platform Config

In order to restart your Flutter application on iOS, due to the platform's limitations, the app will exit and send a local notification to the user. The user can then tap this notification to reopen the app. This is not a full app restart, but it's the closest workaround possible on iOS.

Please note, this package requests local notification permissions just before the app restarts. If granted, a notification will be displayed to the user, prompting them to reopen the app.

While this permission request is handled within the swift code by default, it's recommended that you handle the notification permissions at an earlier point in your app's lifecycle. It's because there could be a delay in iOS granting notification permissions, especially if the user needs to manually allow it in their device's settings. Furthermore, if permissions are requested without context, the user might deny them, resulting in a poor user experience.

To handle the notification permissions earlier and provide context to the user, you can use packages like permission_handler.

Here's the configuration you need to add:

Add the following to the project /ios/Runner/Info.plist file. This will allow the app to send local notifications. Replace PRODUCT_BUNDLE_IDENTIFIER and example with your actual bundle identifier and URL scheme:

<key>CFBundleURLTypes</key>
<array>
  <dict>
    <key>CFBundleTypeRole</key>
    <string>Editor</string>
    <key>CFBundleURLName</key>
	<!-- You can find it on /ios/project.pbxproj - 'PRODUCT_BUNDLE_IDENTIFIER' -->
    <string>[Your project PRODUCT_BUNDLE_IDENTIFIER value]</string>
    <key>CFBundleURLSchemes</key>
    <array>
      <!-- Your app title -->
      <string>example</string>
    </array>
  </dict>
</array>

The CFBundleURLTypes key is used to define URL schemes that your app can handle. URL schemes are used to open your app from another app, a webpage, or even the same app. In this case, it is used to reopen the app from the local notification.

Developer

By Hossein Yousefpour

© All rights reserved.

Donate

Buy Me A Book

About

A Flutter plugin that helps you to restart the whole Flutter app with a single function call by using native APIs.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published