forked from SatoshiPortal/bullbitcoin-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsend_success_page.dart
More file actions
35 lines (33 loc) · 993 Bytes
/
Copy pathsend_success_page.dart
File metadata and controls
35 lines (33 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import 'package:bb_mobile/core/themes/app_theme.dart';
import 'package:bb_mobile/core/utils/build_context_x.dart';
import 'package:bb_mobile/features/ark/router.dart';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
class SendSuccessPage extends StatelessWidget {
const SendSuccessPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(context.loc.arkSendSuccessTitle),
actions: [
CloseButton(
onPressed: () {
context.goNamed(ArkRoute.arkWalletDetail.name);
},
),
],
),
body: Center(
child: Column(
children: [
const SizedBox(height: 24),
Icon(Icons.check_circle, color: context.appColors.success, size: 72),
const SizedBox(height: 24),
Text(context.loc.arkSendSuccessMessage),
],
),
),
);
}
}