import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; class BlockDetailScreen extends ConsumerWidget { final String hash; const BlockDetailScreen({super.key, required this.hash}); @override Widget build(BuildContext context, WidgetRef ref) { return Scaffold( appBar: AppBar(title: const Text('Block Detail')), body: Center( child: Text( 'Block Detail\n\nHash: $hash', textAlign: TextAlign.center, ), ), ); } }