Flutter开发模式切换

Flutter开发有两种模式,开发种一般在profile 模式或者 release 模式下运行app。
大家可能发现在默认的release 模式下开发,运行的app会有卡顿的感觉。
设置方式:
1、在 Android Studio and IntelliJ 中, 在菜单栏中点击 Run > Flutter Run main.dart in Profile Mode
2、VS Code:打开 launch.json 文件并设置flutterMode 为 profile:

"configurations": [
    {
        "name": "Flutter",
        "request": "launch",
        "type": "dart",
        "flutterMode": "profile" # 测试完后记得把它改回去!
    }
]

3、用命令行启动:

flutter run --profile //开发运行的app不卡顿
flutter run --release //开发运行的app卡顿

你可能感兴趣的:(Flutter开发模式切换)