diff --git a/README.md b/README.md index 9ba3bf43667f4239538c9113d12a014f38f47be8..5e527bd3b78b024bea72fc8d38d0c0eda12e0d40 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,11 @@ To compile and use the Flutter app in this repository, you will need to follow t 4. Connect a physical device or launch an emulator to test the app. You can find instructions on how to set up an emulator or connect a physical device on the Flutter website: https://flutter.dev/docs/get-started/install 5. Run the app in debug mode using the flutter run command in the terminal. This will build and launch the app on the connected device or emulator. ```Flutter -flutter run +flutter run +``` +When this command is not working for you because a null-safety related error, try to run +```Flutter +flutter run --no-sound-null-safety ``` 6. Once the app is running, you can test its functionality and make any necessary changes.