blockchain-flutter/lib/features/blocks/blocks_screen.dart
StillHammer 5a8300c5ea Initial setup: Flutter blockchain explorer app
- Clean architecture with feature-based organization
- Riverpod state management, Dio HTTP, GoRouter navigation
- Dashboard, blocks, wallet, transactions, mining screens
- Dark crypto theme with JetBrains Mono font
2026-02-01 10:12:34 +08:00

20 lines
505 B
Dart

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,
),
),
);
}
}