Flutter的四種運(yùn)行模式:Debug架诞、Release、Profile和test
Flutter中如何判斷當(dāng)前運(yùn)行模式是Debug還是Product干茉?
- 判斷當(dāng)前運(yùn)行環(huán)境
const bool inProduction = const bool.fromEnvironment("dart.vm.product");
當(dāng)App運(yùn)行在Release環(huán)境時(shí)谴忧,inProduction為true;當(dāng)App運(yùn)行在Debug和Profile環(huán)境時(shí)角虫,inProduction為false沾谓。