contact us detaile screen ui
This commit is contained in:
@@ -3,6 +3,36 @@ import 'dart:io';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
class ContactUsController extends GetxController {
|
||||
//contact us page controller
|
||||
RxList<File?> attachmentFileList = [File("")].obs;
|
||||
RxList<String> attachmentPathNameList = [""].obs;
|
||||
|
||||
//contact us details page controller
|
||||
RxList<File?> attachmentFileDetailsList = [File("")].obs;
|
||||
RxList<String> attachmentPathNameDetailsList = [""].obs;
|
||||
|
||||
RxList<dynamic> contactUsDetailsChatContent = [
|
||||
{
|
||||
"initial_name": "SM",
|
||||
"date": "16 Feb 2024, 11 : 35PM",
|
||||
"content": """ Dear Customer,
|
||||
Thank you for contacting Traders Circuit
|
||||
|
||||
Your Service reference no is 18663765
|
||||
|
||||
when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to
|
||||
|
||||
using 'Content here, content here', making it look like readable English.
|
||||
|
||||
Regards,
|
||||
Centralised Service Desk
|
||||
|
||||
Traders Circuit""",
|
||||
},
|
||||
{
|
||||
"initial_name": "AM",
|
||||
"date": "16 Feb 2024, 11 : 35PM",
|
||||
"content": "Thank You.......",
|
||||
}
|
||||
].obs;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user