feat: send screen

This commit is contained in:
eneller
2026-03-05 21:08:31 +01:00
parent 886903e402
commit 6af1a8a3e9
7 changed files with 132 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
import { Component } from '@angular/core';
import { FormsModule } from '@angular/forms';
@Component({
selector: 'app-screen-send',
imports: [FormsModule],
templateUrl: './screen-send.html',
styleUrl: './screen-send.less',
})
export class ScreenSend {
amount: number = 0;
recipient: string = '';
note: string = '';
sendMoney() {
console.log('Sending:', this.amount, 'to', this.recipient);
// Add your logic here (e.g., API call)
}
cancel() {
this.amount = 0;
this.recipient = '';
this.note = '';
}
}