Skip to content
This repository has been archived by the owner on Mar 7, 2022. It is now read-only.

A Flutter package that helps you to remotely control the usability of your app.

License

Notifications You must be signed in to change notification settings

f-person/flutter_protected_work

Repository files navigation

Protected Work

A Flutter package that helps you to remotely control the usability of your app.

Using

Wrap your app's builder widget in a ProtectedWork, provide a url and blockResponse. ProtectedWork will send a GET request to url every checkInterval, if the response is equal to blockResponse, blockMessage will be displayed instead of child.

import 'package:flutter/material.dart';
import 'package:flutter_protected_work/flutter_protected_work.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      builder: (context, child) {
        return ProtectedWork(
          url: 'https://example.org/alive',
          blockResponse: 'blockTheApp',
          blockMessage: 'A UFO arrived and made the app unusable',
          checkInterval: const Duration(minutes: 5),
          child: child,
        );
      },
    );
  }
}

About

A Flutter package that helps you to remotely control the usability of your app.

Topics

Resources

License

Stars

Watchers

Forks

Languages