发现页面

This commit is contained in:
2022-10-20 14:33:16 +08:00
parent 42ba10ec61
commit 36b860752a
25 changed files with 2150 additions and 19 deletions

View File

@@ -0,0 +1,20 @@
import 'package:chat/configs/app_colors.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
class PublishDeleteDialog extends StatelessWidget {
const PublishDeleteDialog({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Dialog(
child: ListTile(
textColor: AppColors.red,
title: const Text('删除'),
onTap: () {
Get.back(result: true);
},
),
);
}
}