skip to Main Content

Problem to run the application showing some error message in Flutter

PS D:DevelopmentULTIMAT POSApp POS BackupUltimatePOS_Flutter_1.7.1pos> flutter run Launching libmain.dart on M2102J20SG in debug mode... FAILURE: Build failed with an exception. Where: Build file 'D:DevelopmentULTIMAT POSApp POS BackupUltimatePOS_Flutter_1.7.1posandroidappbuild.gradle' line: 50 What went wrong: A problem occurred evaluating project ':app'. Could not…

VIEW QUESTION

How to fix mapIndexed function in flutter?

I have a function that map from one list and add every item to another list: List<TimeSeriesValues> list = (data["list"] as List).mapIndexed( (index, e) => TimeSeriesValues(DateTime.tryParse(e["detectedAt"])!,int.parse(e['score']))).toList(); This is TimeSeriesValues class: class TimeSeriesValues { final DateTime time; final int values; TimeSeriesValues(this.time,…

VIEW QUESTION

try/catch bloc doesn't work in dart/flutter

I have an exception : class WrongHourException implements Exception {} and I have a function that check many things such as checking hour : void confrimSchedule({ required String startHour, required String startMinute, required String endHour, required String endMinute, required String…

VIEW QUESTION
Back To Top
Search