statflow_dashboard_operations 1.0.1
statflow_dashboard_operations: ^1.0.1 copied to clipboard
Operations dashboard starter kit built on the shared Statflow framework.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:statflow_dashboard_operations/statflow_dashboard_operations.dart';
import 'package:statflow_dashboard_shared/statflow_dashboard_shared.dart';
void main() => runApp(const OperationsExampleApp());
class OperationsExampleApp extends StatelessWidget {
const OperationsExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Statflow Operations Dashboard',
debugShowCheckedModeBanner: false,
theme: buildDashboardTheme(),
home: const OperationsDashboardScreen(),
);
}
}