Files
rog_app/lib/utils/text_util.dart

40 lines
1.4 KiB
Dart
Raw Normal View History

2023-12-06 11:16:17 +05:30
import 'package:geojson_vi/geojson_vi.dart';
2022-10-12 21:46:17 +05:30
import 'package:rogapp/model/destination.dart';
2023-10-06 16:25:21 +05:30
class TextUtils {
2023-12-06 11:16:17 +05:30
static String getDisplayTextFeture(GeoJSONFeature f) {
2023-10-06 16:25:21 +05:30
RegExp regex = RegExp(r'([.]*0)(?!.*\d)');
String txt = "";
// if(f.properties!["cp"] > 0){
// //print("-- sub-- ${f.properties!["cp"]} ----");
// txt = "${f.properties!["cp"].toString().replaceAll(regex, '')}";
// }
//if(f.properties!["buy_point"] != null && f.properties!["buy_point"] > 0){
txt = "$txt${f.properties!["sub_loc_id"]}";
//}
return txt;
}
2023-01-22 18:05:15 +05:30
2023-10-06 16:25:21 +05:30
static String getDisplayText(Destination dp) {
RegExp regex = RegExp(r'([.]*0)(?!.*\d)');
String txt = "";
if (dp.cp! > 0) {
txt = dp.cp.toString().replaceAll(regex, '');
if (dp.checkin_point != null && dp.checkin_point! > 0) {
txt = "$txt{${dp.checkin_point.toString().replaceAll(regex, '')}}";
}
if (dp.buy_point != null && dp.buy_point! > 0) {
//print("^^^^^^^^^ ${dp.sub_loc_id}^^^^^^^^^^");
txt =
"#${dp.cp.toString().replaceAll(regex, '')}(${dp.checkin_point.toString().replaceAll(regex, '')}+${dp.buy_point.toString().replaceAll(regex, '')})";
2022-10-12 21:46:17 +05:30
}
}
2023-10-06 16:25:21 +05:30
return txt;
}
2022-10-12 21:46:17 +05:30
2023-10-06 16:25:21 +05:30
// static String getDisplayText(String num){
// RegExp regex = RegExp(r'([.]*0)(?!.*\d)');
// return "${num.replaceAll(regex, '')}";
// }
}