invert_colors 0.0.1 copy "invert_colors: ^0.0.1" to clipboard
invert_colors: ^0.0.1 copied to clipboard

outdated

A lightweight widget that inverts the colors of its children.

Invert Colors #

A lightweight widget that inverts the colors of its children

Example #

Invert HomePage:

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {

    return MaterialApp(
      title: 'Welcome to Flutter',
      home: InvertColors(
          child: Scaffold(
            appBar: AppBar(
                title: Text('Welcome to Flutter'),
            ),
            body: Center(
                child: Text('Hello World'),
            ),
        ),
      ),
    );
  }
}```

The ```InvertColors``` widget can be used to invert any child.
16
likes
0
points
122
downloads

Publisher

unverified uploader

Weekly Downloads

A lightweight widget that inverts the colors of its children.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on invert_colors

Packages that implement invert_colors