mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
46 lines
1.1 KiB
Dart
46 lines
1.1 KiB
Dart
/*
|
|
* This file is part of Stack Wallet.
|
|
*
|
|
* Copyright (c) 2023 Cypher Stack
|
|
* All Rights Reserved.
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
*
|
|
*/
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:stackwallet/models/isar/models/ethereum/eth_contract.dart';
|
|
import 'package:stackwallet/pages/buy_view/buy_form.dart';
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
|
|
class BuyView extends StatelessWidget {
|
|
const BuyView({
|
|
Key? key,
|
|
this.coin,
|
|
this.tokenContract,
|
|
}) : super(key: key);
|
|
|
|
static const String routeName = "/stackBuyView";
|
|
|
|
final Coin? coin;
|
|
final EthContract? tokenContract;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
debugPrint("BUILD: $runtimeType");
|
|
|
|
return SafeArea(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(
|
|
left: 16,
|
|
right: 16,
|
|
top: 16,
|
|
),
|
|
child: BuyForm(
|
|
coin: coin,
|
|
tokenContract: tokenContract,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|