not_paid 1.0.0 not_paid: ^1.0.0 copied to clipboard
Flutter package to hide out whole application or sections if you are not paid for the job done.
import 'package:flutter/material.dart';
import 'package:not_paid/not_paid.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return NotPaid(
// Due date after which the app fading starts.
dueDate: DateTime(2020, 6, 1),
// As this deadline day reaches the app completely fades away.
deadlineDays: 10,
child: MaterialApp(
title: 'Not-Paid Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: DemoPage(title: 'Not Paid Demo Page'),
),
);
}
}
class DemoPage extends StatefulWidget {
DemoPage({Key key, this.title}) : super(key: key);
final String title;
@override
_DemoPageState createState() => _DemoPageState();
}
class _DemoPageState extends State<DemoPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Padding(
padding: const EdgeInsets.all(32.0),
child: Text(
"Your App content",
style: TextStyle(
fontSize: 24,
color: Colors.green,
fontWeight: FontWeight.bold),
),
)
],
),
),
);
}
}