DEV Community

Cover image for Changing your debugging browser for Flutter (MacOS)
Reme Le Hane
Reme Le Hane

Posted on • Originally published at remelehane.dev

Changing your debugging browser for Flutter (MacOS)

By default, Flutter expects you to have Chrome installed in order to be able to develop and debug with Flutter for Web. Not all of us like or wish to use chrome, we each may have our preferred flavour of chromium, be it Brave, Opera, Vivaldi or many of the other options.

While this is specifically for changing to Brave, the process should work the same for whichever your preferred Chromium flavour is.

All applications are installed in your applications directory, and to override the “Chrome” browser you simply need to set a new path in your environment.

This can be done by setting CHROME_EXECUTABLE in your bashrc or zshrc file, if you are using Brave, then the following should just work:

export CHROME_EXECUTABLE = /Applications/Brave Browser.app/Contents/MacOS/Brave Browser
Enter fullscreen mode Exit fullscreen mode

If you are however using a different flavour of Chromium, then the way I found the correct path was to visit the “Application Monitor”. With the browser running.

Here you would look for the running instance of the browser in the list, there may be more than one, which is normal these days as many chromium browsers isolate each tab in its own running instance for performance and security.

Activity Monitor Screenshot

You should see something similar to the above, once highlighted you want to click on the “I” icon and from the next window, click on the “Open Files and Ports” tab.

Brave processor details screenshot

In the above screenshot, the line you are looking for is the 4th one:

/Applications/Brave Browser.app/Contents/MacOS/Brave Browser
Enter fullscreen mode Exit fullscreen mode

This is the path that you will be setting as the CHROME_EXECUTABLE.

Then somewhere, probably at the bottom, of the files mentioned above, you will then add:

export CHROME_EXECUTABLE = "YOUR PATH HERE..."
Enter fullscreen mode Exit fullscreen mode

Once done, load the file into your terminal or simply execute that same line within your terminal to update the environment.

To reload the file simply run:

. ~/.zshrc
or
. ~/.baschrc
Enter fullscreen mode Exit fullscreen mode

Then to confirm everything was successful, run flutter doctor -v and check the output, it should include something like this and the CHROME_EXECUTABLE path should be the one you set.

Terminal screenshot showing the updated chrome path in Flutter Doctor

If like me you use the built-in tooling for your editor, you may need to restart your editor for the new environment variables to be loaded in, otherwise hitting play may continue to use Chrome.

It is also possible to run:

flutter run -d web-server
Enter fullscreen mode Exit fullscreen mode

However, at the time of writing this method did not support hot restart, so while simpler, not as useful down the line

Thank you for reading, hope you found this useful and can now use your preferred flavour of chromium to better enjoy your flutter development experience.


I hope you found this interesting, and if you have any questions, comments, or improvements, feel free to drop a comment. Enjoy your Flutter development journey :D

If you liked it, a heart would be awesome, and if you really liked it, a cup of coffee would be great.

Thanks for reading.


Top comments (0)