Recently, I decided to delve into Angular and the Flex-Layout framework. After installing flex-layout through npm, I proceeded to import it in my app.module.ts file like so:
import { FlexLayoutModule } from '@angular/flex-layout';
imports: [
FlexLayoutModule
],
However, IntelliJ keeps throwing the error: "Class FlexLayoutModule is not an Angular module."
Has anyone else encountered this issue before? Any suggestions on how to properly utilize this framework?