Last updated:
0 purchases
signal strength indicator
📶 Signal strength indicator widget #
Customizable signal strength indicator widget for Flutter.
Contents #
Features
Installation
Usage
Feature requests and bugs
Features #
See the WEB DEMO.
Installation #
Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
signal_strength_indicator: ^0.4.1
copied to clipboard
Install it
You can install packages from the command line:
$ flutter packages get
copied to clipboard
Alternatively, your editor might support flutter packages get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:signal_strength_indicator/signal_strength_indicator.dart';
copied to clipboard
Usage #
Bars #
SignalStrengthIndicator.bars(
value: 0.6,
size: 50,
barCount: 4,
spacing: 0.2,
)
copied to clipboard
Sector #
SignalStrengthIndicator.sector(
value: 0.6,
size: 50,
barCount: 4,
spacing: 0.5,
)
copied to clipboard
Feature requests and bugs #
Please file feature requests and bugs at the issue tracker.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.