Skip to content

Instantly share code, notes, and snippets.

@thisiszoaib
Created June 6, 2020 08:29
Show Gist options
  • Save thisiszoaib/6403802e0134c420a438d39c22a9583a to your computer and use it in GitHub Desktop.
Save thisiszoaib/6403802e0134c420a438d39c22a9583a to your computer and use it in GitHub Desktop.
Card view 9
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'Card View Demo';
gridColumns = 3;
toggleGridColumns() {
this.gridColumns = this.gridColumns === 3 ? 4 : 3;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment