import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; class DashboardScreen extends ConsumerWidget { const DashboardScreen({super.key}); @override Widget build(BuildContext context, WidgetRef ref) { return Scaffold( appBar: AppBar(title: const Text('Dashboard')), body: const Center( child: Text( 'Blockchain Dashboard\n\nChain stats, recent blocks, and network overview.', textAlign: TextAlign.center, ), ), ); } }