skip to Main Content

GridView builder in flutter from list of array

Padding( padding: EdgeInsets.all(10), child: InkWell( onTap: (){}, child: Container( width: 130, decoration: BoxDecoration( borderRadius: BorderRadius.circular(20), color: MyTheme.creamColor, ), child: Center( child: Column( children: [ Container( margin: EdgeInsets.only(top: 15), child: Image(image: AssetImage("assets/images/icons.png")) ), // SizedBox(height: 7,), Padding( padding: const EdgeInsets.all(8.0), child:…

VIEW QUESTION

Kotlin incompatibility: The binary version of its metadata is 1.8.0, expected version is 1.6.0 – React native

I've been trying to upgrade my project's gradle from v7.3.3 to v8.0.2, and in the process I've been seeing the following error as I attempt to clean the project: /Users/johndoe/.gradle/caches/8.0.2/generated-gradle-jars/gradle-api-8.0.2.jar!/META-INF/configuration-cache.kotlin_module: Module was compiled with an incompatible version of Kotlin. The…

VIEW QUESTION
Back To Top
Search