19 lines
502 B
Dart
19 lines
502 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class BeneficiaryResultPage extends StatelessWidget {
|
|
final bool isSuccess;
|
|
|
|
const BeneficiaryResultPage({super.key, required this.isSuccess});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
body: Center(
|
|
child: Text(
|
|
isSuccess ? 'Beneficiary Added Successfully!' : 'Beneficiary Addition Failed!',
|
|
style: const TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |