- 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
22 lines
528 B
Dart
22 lines
528 B
Dart
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,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|