open:flutter-error

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
  • 마지막으로 수정됨: 2021/04/17 03:35
  • 저자 127.0.0.1