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

A linear gauge package for Flutter that displays progress and can be customized for appearance and behavior.

example/lib/main.dart

import 'package:example/shaders.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(
    const MaterialApp(
      debugShowCheckedModeBanner: false,
      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 const Scaffold(
      body: MyShaders(),
    );
  }
}
101
likes
0
pub points
91%
popularity

Publisher

verified publishergeekyants.com

A linear gauge package for Flutter that displays progress and can be customized for appearance and behavior.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on geekyants_flutter_gauges