stack_wallet/lib/pages/buy_view/buy_view.dart

30 lines
643 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);
2023-01-21 02:32:57 +00:00
static const String routeName = "/stackBuyView";
2022-08-26 08:11:35 +00:00
@override
State<BuyView> createState() => _BuyViewState();
}
class _BuyViewState extends State<BuyView> {
@override
Widget build(BuildContext context) {
debugPrint("BUILD: $runtimeType");
return const SafeArea(
child: Padding(
padding: EdgeInsets.only(
left: 16,
right: 16,
top: 16,
),
child: BuyForm(),
2022-08-26 08:11:35 +00:00
),
);
2022-08-26 08:11:35 +00:00
}
}