- import 'package:flutter/material.dart';
- import 'package:get/get.dart';
- import 'coin_buy_controller.dart';
- class CoinBuyPage extends StatelessWidget {
- CoinBuyPage({Key? key}) : super(key: key);
- final controller = Get.find<CoinBuyController>();
- @override
- Widget build(BuildContext context) {
- return Container();
- }
- }
|