|
|
|
|
@ -1,3 +1,5 @@
|
|
|
|
|
import 'dart:convert';
|
|
|
|
|
|
|
|
|
|
import 'package:easy_localization/easy_localization.dart' as lclize;
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter_svg/svg.dart';
|
|
|
|
|
@ -67,14 +69,15 @@ class _EtqanOvrHomeState extends State<EtqanOvrHome> {
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
(data.ticketNumber ?? "").toText14(isBold: true, color: MyColors.darkTextColor),
|
|
|
|
|
Directionality(textDirection: TextDirection.ltr, child: (data.createdDate ?? "").toText12(color: MyColors.grey70Color)),
|
|
|
|
|
Directionality(textDirection: TextDirection.ltr, child: (data.createdDate!.split(" ").first ?? "").toText12(color: MyColors.grey70Color)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
8.height,
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
(data.description ?? "").toText12(color: MyColors.grey57Color),
|
|
|
|
|
(data.description ?? "").toText12(color: MyColors.grey57Color).expanded,
|
|
|
|
|
const SizedBox(width: 5,),
|
|
|
|
|
RotatedBox(
|
|
|
|
|
quarterTurns: AppState().isArabic(context) ? 2 : 0,
|
|
|
|
|
child: SvgPicture.asset("assets/images/arrow_next.svg", color: MyColors.grey70Color, width: 16, height: 16),
|
|
|
|
|
|