skip to Main Content

flutter setup on android studio

I'm facing problem in flutter setup on android studio. how to resolve this problem ? anyone have faced this problem plz help me out. Exception in thread "main" java.util.zip.ZipException: zip END header not found at java.base/java.util.zip.ZipFile$Source.zerror(ZipFile.java:1581) at java.base/java.util.zip.ZipFile$Source.findEND(ZipFile.java:1476) at java.base/java.util.zip.ZipFile$Source.initCEN(ZipFile.java:1483)…

VIEW QUESTION

Android Studio – A value of type 'bool?' can't be assigned to a variable of type 'bool'. flutter

bool isChecked = false; class _TasksTileState extends State<TasksTile> { bool isChecked = false; @override Widget build(BuildContext context) { print('$isChecked is the value of isChecked'); return CheckboxListTile( title: Text('this is the Task 1.',style: TextStyle( decoration: isChecked? TextDecoration.lineThrough: null, ),), value: isChecked,…

VIEW QUESTION
Back To Top
Search