skip to Main Content

Flutter not working after installing shared_preferences

After installing shared_preferences, my app is not working. Im getting this error: `FAILURE: Build failed with an exception. What went wrong: Execution failed for task ':shared_preferences_android:compileDebugJavaWithJavac'. Could not resolve all files for configuration ':shared_preferences_android:androidJdkImage'. Failed to transform core-for-system-modules.jar to match…

VIEW QUESTION

Flutter – Displaying a CountryFlag in a dropdown list

I want to display CountryFlags, defined in package:country_flags/country_flags.dart, in a flutter DropdownMenu. However, this sample code below only displays a ? : dropdownMenuEntries: list.map<DropdownMenuEntry<String>>((String value) { return DropdownMenuEntry<String>( value: value, label: value, labelWidget: CountryFlag.fromLanguageCode( 'in', width: 20, height: 20, ));…

VIEW QUESTION
Back To Top
Search