stack_wallet/lib/pages/buy_view/buy_view.dart

28 lines
599 B
Dart
Raw Normal View History

2022-08-26 08:11:35 +00:00
import 'package:flutter/material.dart';
import 'package:stackwallet/pages/buy_view/buy_form.dart';
2022-08-26 08:11:35 +00:00
class BuyView extends StatefulWidget {
const BuyView({Key? key}) : super(key: key);
@override
State<BuyView> createState() => _BuyViewState();
}
class _BuyViewState extends State<BuyView> {
@override
Widget build(BuildContext context) {
2022-12-13 00:17:02 +00:00
//todo: check if print needed
// debugPrint("BUILD: BuyView");
2022-08-26 08:11:35 +00:00
return SafeArea(
2023-01-11 15:54:39 +00:00
child: Padding(
padding: EdgeInsets.only(
left: 16,
right: 16,
top: 16,
2022-08-26 08:11:35 +00:00
),
2023-01-11 15:54:39 +00:00
child: BuyForm(),
));
2022-08-26 08:11:35 +00:00
}
}