banner_detail.dart 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. import 'package:easy_localization/easy_localization.dart';
  2. import 'package:flutter/foundation.dart';
  3. import 'package:flutter/material.dart';
  4. import 'package:flutter_linkify/flutter_linkify.dart';
  5. import 'package:telnow_mobile_new/src/layouts/mobile/request_create.dart';
  6. import 'package:telnow_mobile_new/src/layouts/components/template.dart';
  7. import 'package:telnow_mobile_new/src/utils/U.dart';
  8. import 'package:url_launcher/url_launcher.dart';
  9. import 'package:youtube_player_iframe/youtube_player_iframe.dart';
  10. class MobBannerDetailPage extends StatefulWidget {
  11. Map<String, dynamic> user;
  12. Map<String, dynamic> data;
  13. MobBannerDetailPage({required this.user, required this.data, super.key});
  14. @override
  15. State<MobBannerDetailPage> createState() => _MobBannerDetailPageState();
  16. }
  17. class _MobBannerDetailPageState extends State<MobBannerDetailPage> {
  18. late YoutubePlayerController _controller;
  19. @override
  20. void initState() {
  21. if(U.newServerVersion(1719194415) && widget.data['videoId'] != null){
  22. _controller = YoutubePlayerController.fromVideoId(
  23. videoId: widget.data['videoId'],
  24. autoPlay: true,
  25. params: const YoutubePlayerParams(
  26. showFullscreenButton: false,
  27. loop: true,
  28. showControls: false,
  29. strictRelatedVideos: true,
  30. showVideoAnnotations: false,
  31. enableCaption: false,
  32. enableKeyboard: false,
  33. ),
  34. );
  35. }
  36. super.initState();
  37. }
  38. @override
  39. Widget build(BuildContext context) {
  40. return Scaffold(
  41. backgroundColor: Colors.white,
  42. appBar: appBarTemplate(context: context, exc: false, title: widget.data[U.langColumn(context, 'title')]!=null && widget.data[U.langColumn(context, 'title')]!=''?widget.data[U.langColumn(context, 'title')]:widget.data['titleEn']!=null?widget.data['titleEn']:widget.data['title']),
  43. body: Column(
  44. children: [
  45. divider(),
  46. Expanded(
  47. child: Container(
  48. alignment: Alignment.topCenter,
  49. width: U.bodyWidth(context),
  50. child: SingleChildScrollView(
  51. padding: EdgeInsets.all(16),
  52. child: Column(
  53. crossAxisAlignment: CrossAxisAlignment.start,
  54. children: [
  55. U.newServerVersion(1719194415) && widget.data['videoId'] != null ? YoutubePlayer(
  56. controller: _controller,
  57. aspectRatio: 16 / 9,
  58. ) : widget.data['image'] != null ? ClipRRect(
  59. borderRadius: BorderRadius.circular(8.0),
  60. child: Image.network(widget.data['image']+'?bridge-cache=true', width: double.infinity, fit: BoxFit.fitWidth,)
  61. ) : Container(
  62. width: double.infinity,
  63. height: U.bodyWidth(context) / (kIsWeb ? 2.1 : 1.7),
  64. child: Center(child: Text("noImage".tr(), style: TextStyle(fontStyle: FontStyle.italic, color: Colors.black38), textAlign: TextAlign.center)),
  65. decoration: BoxDecoration(
  66. color: textColor.withValues(alpha: 0.1),
  67. borderRadius: BorderRadius.all(Radius.circular(12)),
  68. ),
  69. ),
  70. SizedBox(height: 16),
  71. Linkify(
  72. text: widget.data[U.langColumn(context, 'description')]!=null && widget.data[U.langColumn(context, 'description')]!=''?widget.data[U.langColumn(context, 'description')]:widget.data['descriptionEn']!=null?widget.data['descriptionEn']:widget.data['description'], style: TextStyle(color: textColor, fontSize: 14), textAlign: TextAlign.justify,
  73. onOpen: (link) async {
  74. if (await canLaunchUrl(Uri.parse(link.url))) {
  75. await launchUrl(Uri.parse(link.url));
  76. }
  77. },
  78. ),
  79. SizedBox(height: 24),
  80. widget.data['_requestAttached'] != null ? Text("related".tr(), style: TextStyle(color: textColor, fontSize: 16, fontWeight: FontWeight.w500)) : Container(),
  81. Padding(
  82. padding: EdgeInsets.only(top: 12, bottom: 16),
  83. child: widget.data['_requestAttached']!=null?Column(
  84. children: List.generate(widget.data['_requestAttached'].length, (i){
  85. return GestureDetector(
  86. child: requestTiles(
  87. image: widget.data['_requestAttached'][i]['_mobileImage'] ?? "null",
  88. title: widget.data['_requestAttached'][i][U.langColumn(context, 'subject')],
  89. subtitle: widget.data['_requestAttached'][i][U.langColumn(context, 'subjectDescription')],
  90. ),
  91. onTap: ()=>navigateTo(context, MobReqCreatePage(user: widget.user, request: widget.data['_requestAttached'][i], fromSearch: true)),
  92. );
  93. }),
  94. ):Container(),
  95. ),
  96. ],
  97. ),
  98. ),
  99. ),
  100. )
  101. ],
  102. ),
  103. );
  104. }
  105. }