@@ -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.