LED Bulb Indicator

A simple widget to indicate a status by using an LED kind of style.

LED Bulbs

Features

Four status types are supported: green, yellow, red, off.

Getting started

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
  ...
  led_bulb_indicator: ^0.0.1

and import it:

import 'package:led_bulb_indicator/led_bulb_indicator.dart';

Usage

LedBulbIndicator(
  initialState: LedBulbColors.red,
  glow: true,
  size: 50,
)

Additional information

First release.

Libraries

led_bulb_indicator