geekyants_flutter_gauges 0.0.6 copy "geekyants_flutter_gauges: ^0.0.6" to clipboard
geekyants_flutter_gauges: ^0.0.6 copied to clipboard

Here in Flutter you can use this package to plot a machinery information effortlessly.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:geekyants_flutter_gauges/gauges.dart';

void main() {
  runApp(const MaterialApp(home: MyGaugeExample()));
}

class MyGaugeExample extends StatefulWidget {
  const MyGaugeExample({Key? key}) : super(key: key);

  @override
  State<MyGaugeExample> createState() => _MyGaugeExampleState();
}

class _MyGaugeExampleState extends State<MyGaugeExample> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: const [
            SizedBox(
              child: LinearGauge(
                value: 50.0,
                labelStyle: LabelStyle(
                  fontSize: 10,
                  color: Colors.red,
                ),
              ),
            ),
          ],
        ),
      ),
    );
  }
}
101
likes
0
pub points
91%
popularity

Publisher

verified publishergeekyants.com

Here in Flutter you can use this package to plot a machinery information effortlessly.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on geekyants_flutter_gauges