invert_colors 0.0.2 invert_colors: ^0.0.2 copied to clipboard
A lightweight widget that inverts the colors of its children.
Invert Colors #
A lightweight widget that inverts the colors of its children
Usage #
-
Follow Installation Instructions
-
Wrap around any widget
InvertColors(
child: MyWidget(),
)
Invert HomePage:
import 'package:flutter/material.dart';
import 'package:invert_colors/invert_colors.dart';
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.