shiny_shade 1.0.0
shiny_shade: ^1.0.0 copied to clipboard
Create beautifully styled Containers. Pass a theme from awesome_colors and a color as seed to fond your unique theme.
shiny_shade #
A new library to create beautifully styled Containers. It provides a class ShinyShade that can act like a container. You pass a Color Theme to it from the library awesome_colors and also a seed value color. Based on the seed value, the container style will be styled differently, some are shiny, some are less shiny, the gradients have different directions and overlap each other at different alpha values etc.
Example: #
import 'package:awesome_colors/awesome_colors.dart';
import 'package:awesome_colors/beautiful_gradients.dart';
import 'package:shiny_shade/shiny_shade.dart';
ShinyShade(
theme: AwesomeGradients.magic,
sigmaY: 15,
seed: Purples.darkOrchid,
child: const Center(
child: Text("Hello World"),
),
)
Try different themes and seec colors to find a styling you love.