Flutter error

# build.gradle

android {
  ...
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }
}

snippet.dart
istProvices?.map((Provinces value) {
  return new DropdownMenuItem<Provinces>(
    value: value,
    child: new Text(value.name, style: new TextStyle(fontSize: 16.0),),
  );
})?.toList() ?? [],

Yes, it's wrong only in android emulator.

  • open/flutter-error.txt
  • Last modified: 2024/10/05 06:15
  • by 127.0.0.1