news_getx/lib/modules/account/account_page.dart

15 lines
296 B
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'account_controller.dart';
class AccountPage extends GetView<AccountController> {
const AccountPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container();
}
}