gauge_indicator 0.6.0 copy "gauge_indicator: ^0.6.0" to clipboard
gauge_indicator: ^0.6.0 copied to clipboard

An animated, highly customizable, open source, Flutter gauge widget.

example/lib/main.dart

import 'dart:async';

import 'package:example/router.dart';
import 'package:flutter/material.dart';
import 'package:flutter_web_plugins/url_strategy.dart';
import 'package:google_fonts/google_fonts.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  usePathUrlStrategy();
  unawaited(GoogleFonts.pendingFonts([GoogleFonts.jetBrainsMono()]));
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp.router(
      title: 'Radial gauge',
      theme: ThemeData(
        colorSchemeSeed: Colors.blue,
        tabBarTheme: const TabBarThemeData(labelColor: Colors.black),
      ),
      routerConfig: router,
      builder: (context, child) => ColoredBox(
        color: Theme.of(context).scaffoldBackgroundColor,
        child: child,
      ),
    );
  }
}
207
likes
160
points
16.6k
downloads
screenshot

Documentation

API reference

Publisher

verified publisherklyta.it

Weekly Downloads

An animated, highly customizable, open source, Flutter gauge widget.

Repository (GitHub)
View/report issues

Topics

#widget #animation #gauge #gauge-indicator #gauges

Funding

Consider supporting this project:

www.paypal.com
www.buymeacoffee.com

License

MIT (license)

Dependencies

flutter

More

Packages that depend on gauge_indicator