Skip to content

Commit

Permalink
Fixed README.md typos
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianAssmann authored Feb 13, 2021
1 parent e7d0089 commit 9ad25ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Before you can use this plugin, you need to initialize it by calling `FlutterBac
final androidConfig = FlutterBackgroundAndroidConfig(
notificationTitle: "Title of the notification",
notificationText: "Text of the notification",
importance: AndroidNotificationImportance.Default,
notificationImportance: AndroidNotificationImportance.Default,
);
bool success = await FlutterBackground.initialize(androidConfig: androidconfig);
```
Expand Down Expand Up @@ -77,10 +77,10 @@ you can try to get the app running in the background. You must call `FlutterBack
With

```dart
await FlutterBackground.disbleBackgroundExecution();
await FlutterBackground.disableBackgroundExecution();
```

you can stop the background execution of the app. You must call `FlutterBackground.initialize()` before calling `FlutterBackground.disbleBackgroundExecution()`.
you can stop the background execution of the app. You must call `FlutterBackground.initialize()` before calling `FlutterBackground.disableBackgroundExecution()`.

To check whether background execution is currently enabled, use

Expand Down Expand Up @@ -111,4 +111,4 @@ Using this plugin, the example app can maintain the TCP connection with the serv
[Julian Aßmann](https://github.com/JulianAssmann)

If you experience any problems with this package, please [create an issue on Github](https://github.com/JulianAssmann/flutter_background/issues).
Pull requests are also very welcome.
Pull requests are also very welcome.

1 comment on commit 9ad25ca

@JulianAssmann
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Closes #15

Please sign in to comment.