import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; class BlocksScreen extends ConsumerWidget { const BlocksScreen({super.key}); @override Widget build(BuildContext context, WidgetRef ref) { return Scaffold( appBar: AppBar(title: const Text('Block Explorer')), body: const Center( child: Text( 'Block Explorer\n\nBrowse blocks with pagination.', textAlign: TextAlign.center, ), ), ); } }