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

Client did not pay? Add decreasing opacity to UI components until their app fades away. Set a due date, and no. 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: '2022-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.red,
          child: Center(
            child: Text(
              "Fade.. fade away...",
              style: Theme.of(context)
                  .textTheme
                  .bodyText1
                  .copyWith(color: Colors.white),
            ),
          ),
        ),
      ),
    );
  }
}
41
likes
130
pub points
13%
popularity

Publisher

verified publisherkrishnakumar.cn

Client did not pay? Add decreasing opacity to UI components until their app fades away. Set a due date, and no. of days you offer them until the app is fully vanished.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, intl

More

Packages that depend on faded