2022-08-26 08:11:35 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2023-01-10 21:25:20 +00:00
|
|
|
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) {
|
2023-01-14 16:41:02 +00:00
|
|
|
debugPrint("BUILD: $runtimeType");
|
2023-01-10 21:25:20 +00:00
|
|
|
|
2023-01-14 16:41:02 +00:00
|
|
|
return const SafeArea(
|
|
|
|
child: Padding(
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
left: 16,
|
|
|
|
right: 16,
|
|
|
|
top: 16,
|
|
|
|
),
|
|
|
|
child: BuyForm(),
|
2022-08-26 08:11:35 +00:00
|
|
|
),
|
2023-01-14 16:41:02 +00:00
|
|
|
);
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
}
|