This is my app project. The classes looks fine

This is the libraries I imported as module. The classes are red in colour, why?

1

There are 1 answers

1
Amirhosein On BEST ANSWER

Your new classes not added yet to the version control system. Red indicates a file hasn't been added to staging - this means that when you run git commit, the red files will not be included. Calling git adds on the file will add to staging and turn it green.

Green indicates a completely new file is in staging and will be committed to the git repository when you run git commit