All Projects → bluemix → Gradient Widgets

bluemix / Gradient Widgets

Licence: apache-2.0
Flutter widgets wrapped with gradients

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Gradient Widgets

Gradient Screens
🌈 Gradients applied to buttons, texts and backgrounds in Flutter
Stars: ✭ 97 (-66.55%)
Mutual labels:  text, fab, button
text-style-editor
Text style editor widget for flutter
Stars: ✭ 25 (-91.38%)
Mutual labels:  widget, text
Flutterplayground
Playground app for Flutter
Stars: ✭ 859 (+196.21%)
Mutual labels:  text, button
instagram-text-editor
An Instagram like text editor Flutter widget that helps you to change your text style.
Stars: ✭ 66 (-77.24%)
Mutual labels:  widget, text
Uploader
A lightweight and very configurable jQuery plugin for file uploading using ajax(a sync); includes support for queues, progress tracking and drag and drop.
Stars: ✭ 1,042 (+259.31%)
Mutual labels:  widget, progress
Counterfab
A FloatingActionButton subclass that shows a counter badge on right top corner
Stars: ✭ 725 (+150%)
Mutual labels:  fab, button
Finalcut
A text-based widget toolkit
Stars: ✭ 244 (-15.86%)
Mutual labels:  text, widget
slack widgets
An abstraction of the JSON structure needed to create widgets in Slack message attachments
Stars: ✭ 14 (-95.17%)
Mutual labels:  widget, button
GradientProgress
A gradient progress bar (UIProgressView).
Stars: ✭ 38 (-86.9%)
Mutual labels:  progress, gradient
CheckableTextView
A simple and flexible Checked TextView or Checkable TextView
Stars: ✭ 108 (-62.76%)
Mutual labels:  widget, text
Stacklayoutmanager
customized layoutmanager,let item pile up like stackview/类似最美有物卡片堆叠效果
Stars: ✭ 343 (+18.28%)
Mutual labels:  widget, card
Fab
🛍️ A Floating Action Button for macOS. Inspired by Material Design, and written in Swift.
Stars: ✭ 24 (-91.72%)
Mutual labels:  button, fab
Androidbuttonprogress
Provides download button progress view for android
Stars: ✭ 166 (-42.76%)
Mutual labels:  progress, button
Floating Navigation View
A simple Floating Action Button that shows an anchored Navigation View
Stars: ✭ 1,169 (+303.1%)
Mutual labels:  fab, button
Swift project
原OC项目用swift实现,纯swift项目,可作为学习swift的demo,包含多个自定义控件,并且进行封装网络请求库,结构清晰。
Stars: ✭ 133 (-54.14%)
Mutual labels:  progress, button
Zwmusicdownloadview
精仿唱吧App音乐下载进度按钮,完美快速集成使用(A beautiful musical download progress button which can show the progress and click to play Music after finishing)
Stars: ✭ 88 (-69.66%)
Mutual labels:  progress, button
Mkringprogressview
⭕️ Ring progress view similar to Activity app on Apple Watch
Stars: ✭ 1,140 (+293.1%)
Mutual labels:  progress, gradient
Vue Progress Button
Animated button for VueJS
Stars: ✭ 71 (-75.52%)
Mutual labels:  progress, button
react-native-card-button
Fully customizable Card Button via Paraboly for React Native.
Stars: ✭ 16 (-94.48%)
Mutual labels:  card, button
awesome-web-styling
Awesome Web Styling with CSS Animation Effects ⭐️
Stars: ✭ 109 (-62.41%)
Mutual labels:  text, button

Pub

Gradient Widgets

Gradient Widgets

As of ^0.5.0, shadowColor is available for gradient buttons and cards

A minimal set of Flutter widgets encased with beautiful gradients.

You can use them when your UI needs user attention/focus, , e.g., login or send actions, or important shopping item title (see Gradient Screens to get the idea 😉)

☑️ GradientText

☑️ GradientCard

☑️ GradientButton

☑️ CircularGradientButton + Shadow Color

☑️ GradientProgressIndicator

◻️ CircularGradientProgressIndicator

◻️ GradientAppBar

Installation

In your pubspec.yaml root add:

dependencies:
  gradient_widgets: ^0.5.1

then,

import 'package:gradient_widgets/gradient_widgets.dart';

Usage

Card + Gradient

GradientCard(
    gradient: Gradients.tameer,
    shadowColor: Gradients.tameer.colors.last.withOpacity(0.25),
    elevation: 8,
);

most parameters are the same as the Card.

Progress Indicator + Gradient

Gradient Widgets

must be gradient.colors.length = 2

indeterminate

GradientProgressIndicator(gradient: Gradients.rainbowBlue,);

determinate

GradientProgressIndicator(
  gradient: Gradients.rainbowBlue,
  value: 0.65,
);

Normal Button + Gradient

GradientButton(
  child: Text('Gradient'),
  callback: () {},
  gradient: Gradients.backToFuture,
  shadowColor: Gradients.backToFuture.colors.last.withOpacity(0.25),
),

most parameters are the same as any *Button.

Circular Button + Gradient

CircularGradientButton(
  child: Icon(Icons.gradient),
  callback: (){},
  gradient: Gradients.rainbowBlue,
  shadowColor: Gradients.rainbowBlue.colors.last.withOpacity(0.5),
),

most parameters are the same as FloatingActionButton.

Text + Gradient

GradientText(
  'Hello',
  shaderRect: Rect.fromLTWH(0.0, 0.0, 50.0, 50.0),
  gradient: Gradients.hotLinear,
  style: TextStyle(fontSize: 40.0,),
),

all parameters are the same as the Text.


Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].