geekyants_flutter_gauges 1.0.0+1
geekyants_flutter_gauges: ^1.0.0+1 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(),
);
}
}