Frontend first draft
This commit is contained in:
17
frontend/pweb/lib/pages/payment_methods/icon.dart
Normal file
17
frontend/pweb/lib/pages/payment_methods/icon.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:pshared/models/payment/type.dart';
|
||||
|
||||
|
||||
IconData iconForPaymentType(PaymentType type) {
|
||||
switch (type) {
|
||||
case PaymentType.bankAccount:
|
||||
return Icons.account_balance;
|
||||
case PaymentType.iban:
|
||||
return Icons.language;
|
||||
case PaymentType.wallet:
|
||||
return Icons.account_balance_wallet;
|
||||
case PaymentType.card:
|
||||
return Icons.credit_card;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user