steelseries_flutter 0.0.4
steelseries_flutter: ^0.0.4 copied to clipboard
A port of the steel series gauges to flutter. The port supports radial, linear and many of the original custom steel series gauges.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:example/routes.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Steel Series Gauges Demo',
theme: ThemeData(
scaffoldBackgroundColor: Colors.white,
visualDensity: VisualDensity.adaptivePlatformDensity,
appBarTheme: const AppBarTheme(backgroundColor: Colors.white),
),
initialRoute: '/',
routes: getRoutes(context),
);
}
}