2022-08-26 08:11:35 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:stackwallet/utilities/text_styles.dart';
|
|
|
|
|
|
|
|
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) {
|
|
|
|
debugPrint("BUILD: BuyView");
|
|
|
|
return SafeArea(
|
|
|
|
child: Center(
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
Center(
|
|
|
|
child: Text(
|
|
|
|
"Coming soon",
|
2022-09-22 22:17:21 +00:00
|
|
|
style: STextStyles.pageTitleH1(context),
|
2022-08-26 08:11:35 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
// child: Column(
|
|
|
|
// children: [
|
|
|
|
// Container(
|
|
|
|
// color: Colors.green,
|
|
|
|
// child: Text("BuyView"),
|
|
|
|
// ),
|
|
|
|
// Container(
|
|
|
|
// color: Colors.green,
|
|
|
|
// child: Text("BuyView"),
|
|
|
|
// ),
|
|
|
|
// Spacer(),
|
|
|
|
// Container(
|
|
|
|
// color: Colors.green,
|
|
|
|
// child: Text("BuyView"),
|
|
|
|
// ),
|
|
|
|
// ],
|
|
|
|
// ),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|