import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; class SendTxScreen extends ConsumerWidget { const SendTxScreen({super.key}); @override Widget build(BuildContext context, WidgetRef ref) { return Scaffold( appBar: AppBar(title: const Text('Send Transaction')), body: const Center( child: Text( 'Send Transaction\n\nForm: from, to, amount.', textAlign: TextAlign.center, ), ), ); } }