faded 1.0.2 copy "faded: ^1.0.2" to clipboard
faded: ^1.0.2 copied to clipboard

outdated

Client did not pay? Add opacity to UI components and decrease it every day until their app completely fades away. Set a due date and customize the number of days you offer them until the app is fully vanished.

example/lib/main.dart

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

void main() {
  runApp(Faded(
    // Due date should be in yyyy-mm-dd format
    dueDate: '2021-01-15',
    daysDeadline: 12,
    child: MyApp(),
  ));
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Faded!'),
        ),
        body: Container(
          color: Colors.black,
          child: Center(
            child: Text(
              "Fade.. fade away...",
              style: Theme.of(context)
                  .textTheme
                  .bodyText1
                  .copyWith(color: Colors.white),
            ),
          ),
        ),
      ),
    );
  }
}
41
likes
0
pub points
13%
popularity

Publisher

verified publisherkrishnakumar.cn

Client did not pay? Add opacity to UI components and decrease it every day until their app completely fades away. Set a due date and customize the number of days you offer them until the app is fully vanished.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, intl

More

Packages that depend on faded