赞
踩
Flutter区分开发环境和生产环境的标识
Flutter的四种运行模式:Debug、Release、Profile和test
bool.fromEnvironment可用来判断是否是生产环境,比如
const bool inProduction = const bool.fromEnvironment("dart.vm.product");
当App运行在Release环境时,inProduction为true,为生产环境;当App运行在Debug和Profile环境时,inProduction为false,为开发环境。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。