Flutter

There are some configuration steps shared between android and iOS compilation. In this section, we will cover those.

Install Flutter

To compile the application you will need to have the latest version of flutter installed on your computer. You can refer to Flutter's official documentation for the installation:

Update Server Address

Open config.dart file in libs/client-shared/lib folder and edit the serverIP variable's value to the server's IP address that hosts the server side of the application.
Make sure the format of this value is only the IP address. for example, if your server IP address is 123.45.67.89 it should look like this:
String serverIP = "123.45.67.89";
Don't add any (http, https, or /). Just the numbers and the dots in between.