photo_chat.dart 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. import 'dart:convert';
  2. import 'dart:typed_data';
  3. import 'package:camera/camera.dart';
  4. import 'package:easy_localization/easy_localization.dart';
  5. import 'package:flutter/foundation.dart';
  6. import 'package:flutter/material.dart';
  7. import 'package:image_picker/image_picker.dart';
  8. import 'package:page_transition/page_transition.dart';
  9. import 'package:photo_view/photo_view.dart';
  10. import 'package:telnow_mobile_new/src/api/api_auth_provider.dart';
  11. import 'package:telnow_mobile_new/src/layouts/components/camera.dart';
  12. import 'package:telnow_mobile_new/src/utils/U.dart';
  13. import 'package:image/image.dart' as img;
  14. class PhotoChat extends StatefulWidget {
  15. final data;
  16. final ImageSource? media;
  17. final bool? isBroadcast;
  18. final Uint8List? image;
  19. PhotoChat(this.data, this.media, this.isBroadcast, this.image);
  20. @override
  21. _PhotoChatState createState() => _PhotoChatState();
  22. }
  23. class _PhotoChatState extends State<PhotoChat> {
  24. final ApiAuthProvider apiAuthProvider = ApiAuthProvider();
  25. TextEditingController controllerPesan = new TextEditingController();
  26. Uint8List? image;
  27. Future getImage() async {
  28. // print('photochat in');
  29. XFile? pickedFile;
  30. if(widget.media == ImageSource.camera){
  31. await availableCameras().then((camera) => Navigator.push(context, PageTransition(type: PageTransitionType.rightToLeft, child: OpenCamera(cameras: camera))).then((value) async{
  32. if(value!=null){
  33. pickedFile = value;
  34. }
  35. }));
  36. }
  37. else{
  38. pickedFile = await ImagePicker().pickImage(source: ImageSource.gallery);
  39. }
  40. if (pickedFile != null) {
  41. var imagess = img.decodeImage(await pickedFile!.readAsBytes());
  42. var imgPercent = (1000 / (imagess!.width / 100)).toDouble();
  43. if (imagess.width > 1000) {
  44. imagess = img.copyResize(imagess, width: ((imagess.width / 100) * imgPercent).toInt(), height: ((imagess.height / 100) * imgPercent).toInt());
  45. }
  46. var compressed = img.encodeJpg(imagess, quality: 60);
  47. setState(() => image = compressed);
  48. } else {
  49. Navigator.of(context).pop(null);
  50. }
  51. }
  52. @override
  53. void initState() {
  54. if (widget.image == null) {
  55. getImage();
  56. } else {
  57. image = widget.image!;
  58. }
  59. super.initState();
  60. }
  61. @override
  62. Widget build(BuildContext context) {
  63. return Scaffold(
  64. backgroundColor: Colors.black,
  65. appBar: AppBar(
  66. elevation: 0,
  67. bottomOpacity: 0,
  68. titleSpacing: 0,
  69. title: Text('sendPicture'.tr(), style: TextStyle(color: Colors.white, fontSize: 17, fontWeight: FontWeight.w500), overflow: TextOverflow.ellipsis),
  70. backgroundColor: Colors.black.withValues(alpha: 0.4),
  71. leading: GestureDetector(
  72. child: U.iconsax('arrow-left', color: Colors.white),
  73. onTap: () => Navigator.of(context).pop(),
  74. ),
  75. ),
  76. body: Center(
  77. child: Container(
  78. width: U.bodyWidth(context),
  79. child: Stack(
  80. children: [
  81. Container(
  82. child: image != null ? PhotoView(
  83. maxScale: 5.0,
  84. minScale: 0.3,
  85. imageProvider: MemoryImage(kIsWeb ? widget.image! : image!),
  86. )
  87. : Container()),
  88. Container(
  89. alignment: Alignment.bottomCenter,
  90. child: Container(
  91. // width: double.infinity,
  92. padding: const EdgeInsets.all(10),
  93. color: Colors.black54,
  94. child: Row(
  95. crossAxisAlignment: CrossAxisAlignment.end,
  96. children: [
  97. Expanded(
  98. child: Padding(
  99. padding: const EdgeInsets.only(right: 5),
  100. child: TextField(
  101. controller: controllerPesan,
  102. maxLength: 256,
  103. buildCounter: (BuildContext? context, {int? currentLength, int? maxLength, bool? isFocused}) => null,
  104. style: TextStyle(color: Colors.white, fontSize: 15),
  105. keyboardType: TextInputType.multiline,
  106. minLines: 1,
  107. maxLines: 5,
  108. decoration: InputDecoration(
  109. hintText: 'writeMessage'.tr(),
  110. hintStyle: TextStyle(fontSize: 15, color: Colors.white54),
  111. contentPadding: const EdgeInsets.fromLTRB(10, 5, 10, 5),
  112. border: InputBorder.none,
  113. )),
  114. ),
  115. ),
  116. Expanded(
  117. flex: 0,
  118. child: SizedBox(
  119. width: 50,
  120. height: 50,
  121. child: ElevatedButton(
  122. style: ButtonStyle(
  123. backgroundColor: MaterialStateProperty.all<Color>(primaryColor),
  124. shape: MaterialStateProperty.all<RoundedRectangleBorder>(RoundedRectangleBorder(
  125. borderRadius: BorderRadius.circular(50),
  126. )),
  127. elevation: MaterialStateProperty.all(2),
  128. padding: MaterialStateProperty.all(const EdgeInsets.only(left: 1)),
  129. ),
  130. child: Image.asset('assets/image/icon/Send.png', width: 25, height: 25),
  131. onPressed: () async {
  132. var data = widget.data;
  133. data['text'] = controllerPesan.text.trim();
  134. data['images'] = kIsWeb ? base64Encode(widget.image!) : base64Encode(image!);
  135. Navigator.of(context).pop(data);
  136. },
  137. )),
  138. )
  139. ],
  140. ),
  141. ),
  142. )
  143. ],
  144. ),
  145. ),
  146. ),
  147. );
  148. }
  149. }