Home | Detail | Search |
I haven't programmed this app to collect any personal information. All data, is stored solely on your device and
can be easily deleted by clearing the app's data or uninstalling it.
Explanations related to app architecture and technical decisions will be provided in future updates.
-
Clone the Repository
- Open your terminal or command prompt.
- Run the following command to clone the repository:
git clone <repository-url>
- Navigate to the project directory:
cd <repository-directory>
-
Ensure You Have the Latest IDE
- Make sure you're using the latest version of Android Studio or VSCode for the best development experience.
-
Install FVM (Flutter Version Manager)
- FVM helps you manage Flutter SDK versions efficiently and avoids conflicts.
- Install FVM by running the following command:
dart pub global activate fvm
- Once installed, use FVM to install the required Flutter version for this project:
fvm install
- Create an
.fvm
directory in your project to specify the Flutter version:fvm use <flutter-version>
- Make sure to replace
<flutter-version>
with the required version specified in your project.
-
Configure IDE to Use FVM
- For VSCode:
- Install the FVM extension.
- Open your project in VSCode.
- Use the command palette (Ctrl+Shift+P) and select
FVM: Use
to set the Flutter SDK version for the project.
- For VSCode:
-
Run the Project in Debug Mode
- After setting up FVM, run the project using the following command:
fvm flutter run
- After setting up FVM, run the project using the following command: