circle_app/circle_app/lib/app/call_out/view.dart
2023-06-14 15:07:13 +08:00

17 lines
360 B
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'logic.dart';
class Call_outPage extends StatelessWidget {
Call_outPage({Key? key}) : super(key: key);
final logic = Get.find<Call_outLogic>();
final state = Get.find<Call_outLogic>().state;
@override
Widget build(BuildContext context) {
return Container();
}
}