linear_gradient_style 0.1.5 copy "linear_gradient_style: ^0.1.5" to clipboard
linear_gradient_style: ^0.1.5 copied to clipboard

discontinued

Liner gradient with 300+ different color combination.

flutter_gradient_box_decoration #

A Flutter plugin for iOS and Android for Linear gradient with 300+ different color combination.

Feedback and Pull Requests are most welcome!

Installation #

Add to pubspec.yaml.

dependencies:
  ...
  linear_gradient_style: ^0.1.5

How to use. #

import custom_gradient.dart

import 'linear_gradient.dart';

Usage Example. #

import 'package:flutter/material.dart';
import 'package:gradient_box_decoration/src/linear_gradient.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  /// This is an example app which make use of
  /// How to use `Custom Gradient Box Decoration`

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Container(
        decoration: BoxDecoration(
            gradient: CustomGradient.linearGradient(
                orientation: CustomGradient.ORIENTATION_HORIZONTAL,
                gradientType: CustomGradient.GRADIENT_TYPE_AMIN)),
      ),
    );
  }
}

Gradient Orientation. #

CustomGradient.ORIENTATION_HORIZONTAL. CustomGradient.ORIENTATION_VERTICAL.

Gradient Type (300+ Type are available). #

Here is Some Examples.

CustomGradient.GRADIENT_TYPE_GRADE_GREY. CustomGradient.GRADIENT_TYPE_PIGGY_PINK. CustomGradient.GRADIENT_TYPE_COOL_BLUES. CustomGradient.GRADIENT_TYPE_MEGATRON. CustomGradient.GRADIENT_TYPE_MOONLIT_ASTEROID. CustomGradient.GRADIENT_TYPE_JSHINE. CustomGradient.GRADIENT_TYPE_EVENING_SUNSHINE. CustomGradient.GRADIENT_TYPE_DARK_OCEAN. CustomGradient.GRADIENT_TYPE_COOL_SKY. CustomGradient.GRADIENT_TYPE_YODA. CustomGradient.GRADIENT_TYPE_MEMARIANI.

0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Liner gradient with 300+ different color combination.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on linear_gradient_style