17 lines
360 B
Dart
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();
|
|
}
|
|
}
|