https://github.com/mattrltrent/killswitch
Killswitch for Flutter apps 🔐
https://github.com/mattrltrent/killswitch
killswitch package remote remote-control
Last synced: 10 months ago
JSON representation
Killswitch for Flutter apps 🔐
- Host: GitHub
- URL: https://github.com/mattrltrent/killswitch
- Owner: mattrltrent
- License: mit
- Created: 2024-02-22T00:56:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-27T23:37:42.000Z (almost 2 years ago)
- Last Synced: 2025-03-29T02:39:38.910Z (10 months ago)
- Topics: killswitch, package, remote, remote-control
- Language: C++
- Homepage: https://matthewtrent.me/articles/killswitch
- Size: 285 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Flutter package: `killswitch` 🔐
*Remotely turn your app on/off even after you no longer have access to its code.*
- Quick-start guide found [here](https://matthewtrent.me/articles/killswitch).
- Package found [here](https://pub.dev/packages/killswitch).
- GitHub repo found [here](https://github.com/mattrltrent/killswitch)
----
Documentation is found largely in the package itself via doc-comments. This is useful after you get started.
In the meantime, here's a small taste showing how simple the package is to use (wrap high-up in your widget tree in `main.dart`):
```dart
Killswitch(
killWhitelistAndIgnoreSourceUrl: "https://example.com/killswitch", // <-- your control URL
child: ...
);
```
